From bbc4607f4b14ea59e35116e30caa3f2576a495b9 Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Wed, 3 Jul 2024 17:16:47 +0100 Subject: Add timezone question type --- backend/constants.py | 4 ++-- 1 file 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 = { -- cgit v1.2.3