Skip to content

Commit

Permalink
🩹(backend) add missing environ_prefix on OIDC_CREATE_USER
Browse files Browse the repository at this point in the history
Misleading, to not have all OIDC-related settings, with environ prefix at None.
Caught myself into troubleshooting few minutes.
  • Loading branch information
lebaudantoine authored and rouja committed Dec 6, 2024
1 parent fa9484b commit 2dd16d1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/backend/meet/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,7 @@ class Base(Configuration):
OIDC_AUTHENTICATE_CLASS = "core.authentication.views.OIDCAuthenticationRequestView"
OIDC_CALLBACK_CLASS = "core.authentication.views.OIDCAuthenticationCallbackView"
OIDC_CREATE_USER = values.BooleanValue(
default=True,
environ_name="OIDC_CREATE_USER",
default=True, environ_name="OIDC_CREATE_USER", environ_prefix=None
)
OIDC_FALLBACK_TO_EMAIL_FOR_IDENTIFICATION = values.BooleanValue(
default=False,
Expand Down

0 comments on commit 2dd16d1

Please sign in to comment.