feat: OIDC: add the ability to override the requested scopes (#4530)

This commit is contained in:
Carter
2024-11-09 10:52:12 -06:00
committed by GitHub
parent 8ce6f9038a
commit 6bc7ada20a
4 changed files with 42 additions and 36 deletions

View File

@@ -333,6 +333,7 @@ class AppSettings(AppLoggingSettings):
OIDC_REMEMBER_ME: bool = False
OIDC_USER_CLAIM: str = "email"
OIDC_GROUPS_CLAIM: str | None = "groups"
OIDC_SCOPES_OVERRIDE: str | None = None
OIDC_TLS_CACERTFILE: str | None = None
@property