diff options
author | 2024-07-03 17:16:47 +0100 | |
---|---|---|
committer | 2024-07-03 17:18:30 +0100 | |
commit | bbc4607f4b14ea59e35116e30caa3f2576a495b9 (patch) | |
tree | 619bf85a30740040f06a0aadacf30bf0edfd1dc7 /backend | |
parent | Update deployment namespace in CI (diff) |
Add timezone question type
Diffstat (limited to 'backend')
-rw-r--r-- | backend/constants.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/constants.py b/backend/constants.py index 7ea4519..e1c38d3 100644 --- a/backend/constants.py +++ b/backend/constants.py @@ -18,8 +18,7 @@ PRODUCTION_URL = "https://forms.pythondiscord.com" OAUTH2_CLIENT_ID = os.getenv("OAUTH2_CLIENT_ID") OAUTH2_CLIENT_SECRET = os.getenv("OAUTH2_CLIENT_SECRET") OAUTH2_REDIRECT_URI = os.getenv( - "OAUTH2_REDIRECT_URI", - "https://forms.pythondiscord.com/callback" + "OAUTH2_REDIRECT_URI", "https://forms.pythondiscord.com/callback" ) GIT_SHA = os.getenv("GIT_SHA", "dev") @@ -42,6 +41,7 @@ QUESTION_TYPES = [ "code", "range", "section", + "timezone", ] REQUIRED_QUESTION_TYPE_DATA = { |