From e92f9836e3a701cd46e66e50358ef9a7a80f58b6 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 26 Aug 2021 17:57:25 +0200 Subject: [PATCH] root: allow django auth backend for upgrading users with cache Signed-off-by: Jens Langhammer --- authentik/root/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/authentik/root/settings.py b/authentik/root/settings.py index 19c876fe0..fc3214128 100644 --- a/authentik/root/settings.py +++ b/authentik/root/settings.py @@ -74,6 +74,7 @@ LANGUAGE_COOKIE_NAME = f"authentik_language{_cookie_suffix}" SESSION_COOKIE_NAME = f"authentik_session{_cookie_suffix}" AUTHENTICATION_BACKENDS = [ + "django.contrib.auth.backends.ModelBackend", BACKEND_INBUILT, BACKEND_APP_PASSWORD, BACKEND_LDAP,