Skip to content
Snippets Groups Projects
Commit 68d521b2 authored by Pomucz Tamás András's avatar Pomucz Tamás András
Browse files

Fix logout

parent b5bcef8f
No related branches found
No related tags found
No related merge requests found
Pipeline #51667 failed
...@@ -156,6 +156,7 @@ OIDC_OP_JWKS_ENDPOINT = os.environ.get('OIDC_JWKS_ENDPOINT') ...@@ -156,6 +156,7 @@ OIDC_OP_JWKS_ENDPOINT = os.environ.get('OIDC_JWKS_ENDPOINT')
OIDC_RP_SIGN_ALGO = os.environ.get('OIDC_SIGN_ALGO', 'RS256') OIDC_RP_SIGN_ALGO = os.environ.get('OIDC_SIGN_ALGO', 'RS256')
OIDC_RP_SCOPES = os.environ.get('OIDC_RP_SCOPES', 'openid email profile offline_access') OIDC_RP_SCOPES = os.environ.get('OIDC_RP_SCOPES', 'openid email profile offline_access')
OIDC_VERIFY_KID = False OIDC_VERIFY_KID = False
ALLOW_LOGOUT_GET_METHOD = True
OIDC_EXEMPT_URLS = ["/healthz/", "/admin/", "/oidc/"] OIDC_EXEMPT_URLS = ["/healthz/", "/admin/", "/oidc/"]
LOGIN_REDIRECT_URL = "/" LOGIN_REDIRECT_URL = "/"
LOGOUT_REDIRECT_URL = "/" LOGOUT_REDIRECT_URL = "/"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment