diff options
author | 2020-12-12 14:32:13 +0000 | |
---|---|---|
committer | 2020-12-12 14:32:13 +0000 | |
commit | 35626c80026931dc7306f06bcd5e7cdc70d4dddc (patch) | |
tree | a7649a765812096a21a87b8089f5977517c80a43 /backend/constants.py | |
parent | Merge pull request #16 from python-discord/add-form-response-schema (diff) | |
parent | Make JSON errors more JS friendly and add response codes (diff) |
Merge pull request #17 from python-discord/ks123/response-model-endpoint
Diffstat (limited to 'backend/constants.py')
-rw-r--r-- | backend/constants.py | 2 |
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", |