fix(oidc): do not use prompt=none which prevents the login dialog

Signed-off-by: Morgan Martinet <morgan@mmm-experts.com>
This commit is contained in:
Morgan Martinet
2021-07-13 18:42:07 -04:00
committed by Morgan Martinet
parent 7f1ac84c60
commit da70a0cc1b
2 changed files with 12 additions and 4 deletions
+4 -1
View File
@@ -312,13 +312,16 @@ auth:
#
# scope: saml-login-selector openid profile email
oidc:
# Note that you must define a session secret (above) since the oidc provider requires session support
development:
metadataUrl: ${AUTH_OIDC_METADATA_URL}
clientId: ${AUTH_OIDC_CLIENT_ID}
clientSecret: ${AUTH_OIDC_CLIENT_SECRET}
authorizationUrl: ${AUTH_OIDC_AUTH_URL}
tokenUrl: ${AUTH_OIDC_TOKEN_URL}
tokenSignedResponseAlg: ${AUTH_OIDC_TOKEN_SIGNED_RESPONSE_ALG}
tokenSignedResponseAlg: ${AUTH_OIDC_TOKEN_SIGNED_RESPONSE_ALG} # default='RS256'
scope: ${AUTH_OIDC_SCOPE} # default='openid profile email'
prompt: ${AUTH_OIDC_PROMPT} # default='' (allowed values: '', 'none', 'consent', 'login')
auth0:
development:
clientId: ${AUTH_AUTH0_CLIENT_ID}