aboutsummaryrefslogtreecommitdiffstats
path: root/backend/constants.py
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-12-13 19:06:46 +0000
committerGravatar GitHub <[email protected]>2020-12-13 19:06:46 +0000
commitd5eee463a298c7966a5a47d81d7163aafd0b818b (patch)
tree30e33a8d5beabed53d73a5687449af5b742acf67 /backend/constants.py
parentMerge pull request #23 from python-discord/ks123/form-endpoint (diff)
HTTPs URL in OAuth2 callback
Diffstat (limited to 'backend/constants.py')
-rw-r--r--backend/constants.py2
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())