diff --git a/docs/docs/apis/openidoauth/authrequest.mdx b/docs/docs/apis/openidoauth/authrequest.mdx index 2f5b924e30..2f04c54b07 100644 --- a/docs/docs/apis/openidoauth/authrequest.mdx +++ b/docs/docs/apis/openidoauth/authrequest.mdx @@ -65,10 +65,13 @@ More in the [documentation](/apis/openidoauth/authn-methods) about authenticatio
Prompt defines if and how the user
- should be prompted on login. For example you can pre-select a login name (
- select_account
) or present the register form (create
- ) to users directly. The value login
requires the user to
- re-authenticate.
+ should be prompted on login. For example:
+
select_account
: user is prompted to select one of the existing sessions or create a new onecreate
: present the register formlogin
: requires the user to re-authenticatenone
: user must be authenticated without interaction, an error is returned otherwise; use for silent-refreshdiff --git a/docs/src/components/authrequest.jsx b/docs/src/components/authrequest.jsx index 871be22fb1..833453aa7b 100644 --- a/docs/src/components/authrequest.jsx +++ b/docs/src/components/authrequest.jsx @@ -36,7 +36,7 @@ export function SetAuthRequest() { const allResponseTypes = ["code", "id_token", "id_token token"]; - const allPrompts = ["", "login", "select_account", "create"]; + const allPrompts = ["", "login", "select_account", "create", "none"]; const allAuthMethods = ["(none) PKCE", "Client Secret Basic"];