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: +

diff --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"];