From a7128756bdfe795c72f34b7b856505cc19f6bf28 Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Wed, 28 May 2025 11:54:21 -0400 Subject: [PATCH] Reorder authentication backends to prioritize NoPasswordAuthBackend while retaining Allauth and ModelBackend --- backend/server/main/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/server/main/settings.py b/backend/server/main/settings.py index bc1a381..6721137 100644 --- a/backend/server/main/settings.py +++ b/backend/server/main/settings.py @@ -237,8 +237,8 @@ HEADLESS_FRONTEND_URLS = { } AUTHENTICATION_BACKENDS = [ - 'allauth.account.auth_backends.AuthenticationBackend', 'users.backends.NoPasswordAuthBackend', + 'allauth.account.auth_backends.AuthenticationBackend', 'django.contrib.auth.backends.ModelBackend', ]