From 195e10c3305f1a518d6cf51d8b0383b43021ae4d Mon Sep 17 00:00:00 2001 From: Lars Meijers Date: Thu, 14 Mar 2024 17:40:52 +0100 Subject: [PATCH] set oidc instead of keycloak for redirect on view --- dojo/user/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dojo/user/views.py b/dojo/user/views.py index f021aa0046..3bd7e41cb6 100644 --- a/dojo/user/views.py +++ b/dojo/user/views.py @@ -127,7 +127,7 @@ def login_view(request): elif settings.GITLAB_OAUTH2_ENABLED: social_auth = 'gitlab' elif settings.KEYCLOAK_OAUTH2_ENABLED: - social_auth = 'keycloak' + social_auth = 'oidc' elif settings.AUTH0_OAUTH2_ENABLED: social_auth = 'auth0' elif settings.GITHUB_ENTERPRISE_OAUTH2_ENABLED: