diff options
author | 2020-12-14 17:53:10 +0000 | |
---|---|---|
committer | 2020-12-14 17:53:10 +0000 | |
commit | afc3596943db58b62a78f121310605696300f7fa (patch) | |
tree | f76bc6827a0fb9286414627d1537740a532e2de4 /backend/constants.py | |
parent | Restructure single response route (diff) | |
parent | Merge pull request #25 from python-discord/bugfix/route-collision (diff) |
Merge branch 'main' into ks123/single-response-route
Diffstat (limited to 'backend/constants.py')
-rw-r--r-- | backend/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/constants.py b/backend/constants.py index 61519ed..fdf7092 100644 --- a/backend/constants.py +++ b/backend/constants.py @@ -13,7 +13,7 @@ OAUTH2_CLIENT_ID = os.getenv("OAUTH2_CLIENT_ID") OAUTH2_CLIENT_SECRET = os.getenv("OAUTH2_CLIENT_SECRET") OAUTH2_REDIRECT_URI = os.getenv( "OAUTH2_REDIRECT_URI", - "http://forms.pythondiscord.com/callback" + "https://forms.pythondiscord.com/callback" ) SECRET_KEY = os.getenv("SECRET_KEY", binascii.hexlify(os.urandom(30)).decode()) |