Skip to content

Commit

Permalink
Merge pull request #82 from akatsoulas/fix-logout
Browse files Browse the repository at this point in the history
Fix typo in auth0 signout.
  • Loading branch information
akatsoulas committed Jan 18, 2017
2 parents 99c225d + 7ed07cb commit dd27c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mozilla_django_oidc/contrib/auth0/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def refresh_id_token(id_token):

def logout_url():
"""Log out the user from Auth0."""
url = 'https//' + import_from_settings('OIDC_OP_DOMAIN') + '/v2/logout'
url = 'https://' + import_from_settings('OIDC_OP_DOMAIN') + '/v2/logout'
url += '?' + urlencode({
'returnTo': import_from_settings('LOGOUT_REDIRECT_URL', '/'),
'client_id': import_from_settings('OIDC_RP_CLIENT_ID')
Expand Down

0 comments on commit dd27c72

Please sign in to comment.