Fix insecure link to MLC (#822)

This commit is contained in:
Kevin Chung
2019-01-05 19:25:29 -05:00
committed by GitHub
parent f1d0221ee2
commit 9f7dc0543c

View File

@@ -310,7 +310,7 @@ def oauth_redirect():
token = token_request.json()['access_token']
user_url = get_app_config('OAUTH_API_ENDPOINT') \
or get_config('oauth_api_endpoint') \
or 'http://api.majorleaguecyber.org/user'
or 'https://api.majorleaguecyber.org/user'
headers = {
'Authorization': 'Bearer ' + str(token),