Skip to content

Commit

Permalink
Add setting for scopes
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-pimenta-DME committed Oct 23, 2023
1 parent 397256a commit ccf0e32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion portal/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
OIDC_STORE_ID_TOKEN = True

TOKEN_ID_COOKIE = os.environ.get('TOKEN_ID_COOKIE',"auth_user_id")
OIDC_RP_SCOPES = "openid user_name is_operator"
OIDC_RP_SCOPES = os.environ.get('OIDC_RP_SCOPES', "openid user_name is_operator")


USER_PREFIX = os.environ.get('USER_PREFIX','user-prefix')
Expand Down

0 comments on commit ccf0e32

Please sign in to comment.