Skip to content

docs: fix type errors in additional parameters of keycloak provider #131

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions docs/content/2.provider/6.keycloak.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ Additional parameters to be used in additionalAuthParameters, additionalTokenPar

| Option | Type | Default | Description |
|---|---|---|---|
| realm | `string` | - | Optional. This parameter allows to slightly customize the login flow on the KeyCloak server side. For example, enforce displaying the login screen in case of value login. |
| realm | `string` | - | Optional. Used to pre-fill the username/email field on the login form. |
| realm | `string` | - | Optional. Used to tell KeyCloak to skip showing the login page and automatically redirect to the specified identity provider instead. |
| realm | `string` | - | Optional. Sets the 'ui_locales' query param. |
| prompt | `string` | - | Optional. This parameter allows to slightly customize the login flow on the KeyCloak server side. For example, enforce displaying the login screen in case of value login. |
| loginHint | `string` | - | Optional. Used to pre-fill the username/email field on the login form. |
| idpHint | `string` | - | Optional. Used to tell KeyCloak to skip showing the login page and automatically redirect to the specified identity provider instead. |
| locale | `string` | - | Optional. Sets the 'ui_locales' query param. |

For more information on these parameters, check the [KeyCloak documentation](https://www.keycloak.org/docs/latest/securing_apps/#methods).

Expand Down