Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2020-01-06 22:53:59 +01:00
parent 4c1f717be5
commit e4676d908e
3 changed files with 13 additions and 12 deletions

View File

@@ -494,3 +494,13 @@ try:
CELERY = CFG['use_celery']
except KeyError:
CELERY = False
# Recaptcha
try:
RECAPTCHA_SITE_KEY = CFG['recaptcha_site_key']
RECAPTCHA_SITE_SECRET = CFG['recaptcha_site_secret']
except KeyError:
RECAPTCHA_SITE_KEY = ''
RECAPTCHA_SITE_SECRET = ''