Skip to content

Commit

Permalink
Merge pull request #283 from projectcaluma/fix-defaults
Browse files Browse the repository at this point in the history
fix: fix default auth backend settings
  • Loading branch information
open-dynaMIX authored Apr 14, 2023
2 parents 9eafbd8 + 18ef3d9 commit ed23562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alexandria/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def parse_languages(languages):
DEV_AUTH_BACKEND = env.bool("DEV_AUTH_BACKEND", default=False)
OIDC_DRF_AUTH_BACKEND = env.str(
"OIDC_DRF_AUTH_BACKEND",
default="alexandria.oidc_auth.authentication.DMSAuthenticationBackend",
default="alexandria.oidc_auth.authentication.AlexandriaAuthenticationBackend",
)
if DEV_AUTH_BACKEND:
OIDC_DRF_AUTH_BACKEND = (
Expand Down

0 comments on commit ed23562

Please sign in to comment.