Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 7 additions & 12 deletions docs/dev/web/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down