From a9bb7f8b5966816d341e765cf064442fe68b69b2 Mon Sep 17 00:00:00 2001 From: Classic298 <27028174+Classic298@users.noreply.github.com> Date: Mon, 22 Sep 2025 08:05:16 +0200 Subject: [PATCH] Update onedrive-sharepoint.mdx --- docs/tutorials/integrations/onedrive-sharepoint.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tutorials/integrations/onedrive-sharepoint.mdx b/docs/tutorials/integrations/onedrive-sharepoint.mdx index 1fe2a14d..77c6db1c 100644 --- a/docs/tutorials/integrations/onedrive-sharepoint.mdx +++ b/docs/tutorials/integrations/onedrive-sharepoint.mdx @@ -64,7 +64,7 @@ Open WebUI uses the `.default` scope for a seamless enterprise experience, meani From the **Overview** page of the App Registration you just created, copy the following values: -- **Application (client) ID**: This will be your `ONEDRIVE_CLIENT_ID`. +- **Application (client) ID**: This will be your `ONEDRIVE_CLIENT_ID_BUSINESS`. - **Directory (tenant) ID**: This will be your `ONEDRIVE_SHAREPOINT_TENANT_ID`. ## Step 5: Configure Environment Variables for Business Integration @@ -77,7 +77,7 @@ ENABLE_ONEDRIVE_INTEGRATION=true # --- Business & SharePoint Configuration --- # The Application (client) ID from your Business App Registration -ONEDRIVE_CLIENT_ID="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" +ONEDRIVE_CLIENT_ID_BUSINESS="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" # The Directory (tenant) ID from your Business App Registration ONEDRIVE_SHAREPOINT_TENANT_ID="yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy" @@ -111,7 +111,7 @@ Add the following environment variable to your Open WebUI deployment: ```bash # --- Personal Account Configuration (Optional) --- # The Application (client) ID from your *second*, Personal App Registration -ONEDRIVE_PERSONAL_CLIENT_ID="zzzzzzzz-zzzz-zzzz-zzzz-zzzzzzzzzzzz" +ONEDRIVE_CLIENT_ID_PERSONAL="zzzzzzzz-zzzz-zzzz-zzzz-zzzzzzzzzzzz" ``` ---