diff options
author | 2024-07-03 17:25:00 +0100 | |
---|---|---|
committer | 2024-07-03 17:25:00 +0100 | |
commit | 7396ea6866092e5f6c2cf90f5a5e55dc63664aa8 (patch) | |
tree | 619bf85a30740040f06a0aadacf30bf0edfd1dc7 | |
parent | Update deployment namespace in CI (diff) | |
parent | Add timezone question type (diff) |
Merge pull request #274 from python-discord/jb3/fields/timezone-question
Add timezone question type
-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 = { |