Skip to content

Commit

Permalink
fix: authentication backends paths
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Sep 18, 2023
1 parent cb7fe7a commit 612f1aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions codeforlife/settings/django.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
# https://docs.djangoproject.com/en/3.2/ref/settings/#authentication-backends

AUTHENTICATION_BACKENDS = [
"user.auth_backends.EmailAndPasswordBackend",
"user.auth_backends.UserIdAndLoginIdBackend",
"user.auth_backends.UsernameAndPasswordAndClassIdBackend",
"codeforlife.user.auth_backends.EmailAndPasswordBackend",
"codeforlife.user.auth_backends.UserIdAndLoginIdBackend",
"codeforlife.user.auth_backends.UsernameAndPasswordAndClassIdBackend",
]

# Sessions
Expand Down

0 comments on commit 612f1aa

Please sign in to comment.