From 90c61bc6b07ce2ac9ff617b8d283252e0d143b39 Mon Sep 17 00:00:00 2001 From: Jannik Stehle Date: Mon, 16 Mar 2026 16:38:07 +0100 Subject: [PATCH] docs(dev): adjust oidc web config --- docs/dev/web/getting-started.md | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/docs/dev/web/getting-started.md b/docs/dev/web/getting-started.md index 7ed451c6..2524a93b 100644 --- a/docs/dev/web/getting-started.md +++ b/docs/dev/web/getting-started.md @@ -67,18 +67,13 @@ Controls the Web apps to be loaded. This is not for adding external apps, but fo ### `openIdConnect` -Options for the connection to the oIDC provider. Expects an object with the following possible options: - -- `openIdConnect.authority` URL of the OIDC/OAuth2 provider. -- `openIdConnect.metadata_url` URL of the OIDC configuration. -- `openIdConnect.client_id` The client id registered with the OIDC/OAuth2 provider. -- `openIdConnect.client_secret` -- `openIdConnect.dynamic` -- `openIdConnect.post_logout_redirect_uri` -- `openIdConnect.response_type` -- `openIdConnect.scope` - -See the [oidc-client-ts documentation](https://authts.github.io/oidc-client-ts/interfaces/OidcClientSettings.html) for more information. +The Web client forwards all configuration options under `openIdConnect` to the [oidc-client-ts library](https://authts.github.io/oidc-client-ts/). Setting the following 3 options however won't have any effect, as they get discovered automatically via the `/.well-known/webfinger` endpoint: + +- `client_id` +- `scope` +- `authority` + +See the [oidc-client-ts documentation](https://authts.github.io/oidc-client-ts/interfaces/OidcClientSettings.html) for information on the available configuration options for the library. ### `customTranslations`