aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-07-03 17:25:00 +0100
committerGravatar GitHub <[email protected]>2024-07-03 17:25:00 +0100
commit7396ea6866092e5f6c2cf90f5a5e55dc63664aa8 (patch)
tree619bf85a30740040f06a0aadacf30bf0edfd1dc7
parentUpdate deployment namespace in CI (diff)
parentAdd timezone question type (diff)
Merge pull request #274 from python-discord/jb3/fields/timezone-question
Add timezone question type
-rw-r--r--backend/constants.py4
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 = {