From 522ca3fb7e8914ead6d24e1c3a1de72da9862d3f Mon Sep 17 00:00:00 2001 From: Trong Huu Nguyen Date: Tue, 14 Jan 2025 12:36:33 +0100 Subject: [PATCH] docs: add missing prompt parameter for login endpoint --- docs/endpoints.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/endpoints.md b/docs/endpoints.md index c8c377f..569a54f 100644 --- a/docs/endpoints.md +++ b/docs/endpoints.md @@ -44,6 +44,7 @@ Redirect the user here to initiate the OpenID Connect Authorization Code flow. | `redirect` | Where the user will be redirected after successful callback from the Identity Provider. Must be a relative URL with an absolute path, or an absolute URL. | For standalone or SSO proxy mode, this effectively only allows relative URLs. For SSO server mode, the domain must match any subdomain and path within the configured SSO domain. | | `level` | The `acr_values` parameter for the OpenID Connect authentication request. | Value must be declared as supported by the Identity Provider through the `acr_values_supported` property in the metadata document. | | `locale` | The `ui_locales` parameter for the OpenID Connect authentication request | Value must be declared as supported by the Identity Provider through the `ui_locales_supported` property in the metadata document. | +| `prompt` | The `prompt` parameter for the OpenID Connect authentication request. | Allowed values are `select_account` or `login`. | The user will be sent to the identity provider for authentication, and then back to the `/oauth2/callback` endpoint.