From f002cc5c84d122b527edec7ce843d817aa4162dc Mon Sep 17 00:00:00 2001 From: Disco DeDisco Date: Fri, 30 Jan 2026 19:35:45 -0500 Subject: [PATCH] auth backend defined in core.settings --- src/core/settings.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/settings.py b/src/core/settings.py index e0f2038..cdaec20 100644 --- a/src/core/settings.py +++ b/src/core/settings.py @@ -113,6 +113,10 @@ AUTH_PASSWORD_VALIDATORS = [ AUTH_USER_MODEL = "lyric.User" +AUTHENTICATION_BACKENDS = [ + "apps.lyric.authentication.PasswordlessAuthenticationBackend", +] + # Internationalization # https://docs.djangoproject.com/en/6.0/topics/i18n/