From 22bb23f7a86705b74b2fe7e9073fbf9258036b61 Mon Sep 17 00:00:00 2001 From: Liss-Bot Date: Sun, 3 Aug 2025 13:05:45 +0000 Subject: [PATCH] Update documentation --- docs/authentication.md | 1 + docs/configuring.md | 2 ++ 2 files changed, 3 insertions(+) diff --git a/docs/authentication.md b/docs/authentication.md index 37a94b56..a0f1f7f1 100644 --- a/docs/authentication.md +++ b/docs/authentication.md @@ -286,6 +286,7 @@ appConfig: clientId: [registered client id] endpoint: [OIDC endpoint] scope: [The scope(s) to request from the OIDC provider] + adminGroup: admin ``` Because Dashy is a SPA, a [public client](https://datatracker.ietf.org/doc/html/rfc6749#section-2.1) registration with PKCE is needed. diff --git a/docs/configuring.md b/docs/configuring.md index 880d0a41..3639f593 100644 --- a/docs/configuring.md +++ b/docs/configuring.md @@ -204,6 +204,8 @@ For more info, see the **[Authentication Docs](/docs/authentication)** --- | --- | --- | --- **`clientId`** | `string` | Required | The client id registered in the OIDC server **`endpoint`** | `string` | Required | The URL of the OIDC server that should be used. +**`adminRole`** | `string` | _Optional_ | The role that will be considered as admin. +**`adminGroup`** | `string` | _Optional_ | The group that will be considered as admin. **`scope`** | `string` | Required | The scope(s) to request from the OIDC provider **[⬆️ Back to Top](#top)**