aboutsummaryrefslogtreecommitdiffstats
path: root/backend/constants.py
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-12-12 14:33:37 +0000
committerGravatar GitHub <[email protected]>2020-12-12 14:33:37 +0000
commit558b99282ddf742104c62519817954791beb605a (patch)
treecfa3b6e6a57de4278027e254385ddc759496b2b9 /backend/constants.py
parentAdd name and description fields to Form model (diff)
parentMerge pull request #17 from python-discord/ks123/response-model-endpoint (diff)
Merge branch 'main' into ks123/form-name-description
Diffstat (limited to 'backend/constants.py')
-rw-r--r--backend/constants.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/backend/constants.py b/backend/constants.py
index 3b8bec8..61519ed 100644
--- a/backend/constants.py
+++ b/backend/constants.py
@@ -18,6 +18,8 @@ OAUTH2_REDIRECT_URI = os.getenv(
SECRET_KEY = os.getenv("SECRET_KEY", binascii.hexlify(os.urandom(30)).decode())
+HCAPTCHA_API_SECRET = os.getenv("HCAPTCHA_API_SECRET")
+
QUESTION_TYPES = [
"radio",
"checkbox",