Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
fix: ajout du backend d'identification par défaut
Browse files Browse the repository at this point in the history
Dans la configuration précédente, seule l'identification par OIDC était
possible.
Mais la partie admin de Django à besoin de l'identification par "modéle"
(qui est celle par défaut).
Les deux oexistent sereinement maintenant.
  • Loading branch information
ikarius committed Oct 7, 2024
1 parent a4bff98 commit 2c047d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@

# OIDC / ProConnect
AUTHENTICATION_BACKENDS = [
# auth par défaut pour la partie admin :
"django.contrib.auth.backends.ModelBackend",
"dora.oidc.OIDCAuthenticationBackend",
]

Expand Down

0 comments on commit 2c047d6

Please sign in to comment.