From 07fa8e9b6c383e8f3b168042b05be1c7ffe4e41c Mon Sep 17 00:00:00 2001 From: Andrey Rusakov Date: Tue, 3 Dec 2024 17:24:50 +0100 Subject: [PATCH] Fixed OIDC settings becasue of new changes in the main settings --- oidc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oidc.py b/oidc.py index 11d6c0a4..acd65675 100644 --- a/oidc.py +++ b/oidc.py @@ -15,7 +15,7 @@ UserModel = get_user_model() def status(request): - return {"OIDC_ENABLED": settings.OIDC_ENABLED} + return {"OIDC_ENABLED": settings.FEATURE_FLAGS["oidc"]} def _updateUser(user, claims):