fix: add base scopes for OAuth2 configuration

This commit is contained in:
maxDorninger
2025-05-30 18:07:31 +02:00
parent 92599b774a
commit 464e1eb8c7

View File

@@ -54,6 +54,7 @@ if (
authorize_endpoint=oauth2_config.authorize_endpoint,
access_token_endpoint=oauth2_config.access_token_endpoint,
user_info_endpoint=oauth2_config.user_info_endpoint,
base_scopes=["openid", "email", "profile"],
)
else:
oauth_client = None