aboutsummaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2021-03-08 17:28:17 +0300
committerGravatar Hassan Abouelela <[email protected]>2021-03-08 17:28:17 +0300
commit4fadbef8cd9aded59b02d376f78533947aa831df (patch)
tree69b6be764ecffa99fc88eb85d8753369844b4c6a /backend
parentMerge pull request #69 from python-discord/dependabot/pip/flake8-annotations-... (diff)
Fixes Production URL Constant
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'backend')
-rw-r--r--backend/constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/constants.py b/backend/constants.py
index 4bb7fd1..d90fd9a 100644
--- a/backend/constants.py
+++ b/backend/constants.py
@@ -13,7 +13,7 @@ MONGO_DATABASE = os.getenv("MONGO_DATABASE", "pydis_forms")
SNEKBOX_URL = os.getenv("SNEKBOX_URL", "http://snekbox.default.svc.cluster.local/eval")
PRODUCTION = os.getenv("PRODUCTION", "True").lower() != "false"
-PRODUCTION_URL = "https://forms.pythondiscord.com/"
+PRODUCTION_URL = "https://forms.pythondiscord.com"
OAUTH2_CLIENT_ID = os.getenv("OAUTH2_CLIENT_ID")
OAUTH2_CLIENT_SECRET = os.getenv("OAUTH2_CLIENT_SECRET")