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)**