Skip to content

Commit

Permalink
fix account host path bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Ksoy committed Jun 5, 2022
1 parent 908aa4c commit 3ea0568
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,5 +138,5 @@
ACCOUNT_CLIENT_SECRET = ''
# You can find your REDIRECT URI in Account Subsystem Application Detail page
ACCOUNT_OAUTH2_REDIRECT_URI = ''
ACCOUNT_OIDC_AUTHORIZATION_ENDPOINT = f'https://{ACCOUNT_HOST}/oauth2/v1/authorize/'
ACCOUNT_OIDC_TOKEN_ENDPOINT = f'https://{ACCOUNT_HOST}/oauth2/v1/token/'
ACCOUNT_OIDC_AUTHORIZATION_ENDPOINT = f'{ACCOUNT_HOST}/oauth2/v1/authorize/'
ACCOUNT_OIDC_TOKEN_ENDPOINT = f'{ACCOUNT_HOST}/oauth2/v1/token/'

0 comments on commit 3ea0568

Please sign in to comment.