diff options
| -rw-r--r-- | backend/constants.py | 11 | 
1 files changed, 11 insertions, 0 deletions
diff --git a/backend/constants.py b/backend/constants.py index 746e277..c7db8e6 100644 --- a/backend/constants.py +++ b/backend/constants.py @@ -15,3 +15,14 @@ OAUTH2_REDIRECT_URI = os.getenv(  )  SECRET_KEY = os.getenv("SECRET_KEY", binascii.hexlify(os.urandom(30)).decode()) + +QUESTION_TYPES = [ +    "radio", +    "checkbox", +    "select", +    "short_text", +    "textarea", +    "code", +    "range", +    "section", +]  |