aboutsummaryrefslogtreecommitdiff
path: root/src/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-07 09:27:18 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-07 09:27:18 +0200
commit50392b28721f8fff4143cff484a5cca2aa482093 (patch)
treef2420b9e4dda5ab1bb20527bcf8a238943db77f9 /src/conf.py
parentBug fix in the dashboard template. (diff)
downloadnewspipe-50392b28721f8fff4143cff484a5cca2aa482093.tar.gz
newspipe-50392b28721f8fff4143cff484a5cca2aa482093.tar.bz2
newspipe-50392b28721f8fff4143cff484a5cca2aa482093.zip
Removed recaptcha.
Diffstat (limited to 'src/conf.py')
-rw-r--r--src/conf.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/conf.py b/src/conf.py
index f30b5701..6a50eeb1 100644
--- a/src/conf.py
+++ b/src/conf.py
@@ -28,8 +28,6 @@ DEFAULTS = {"platform_url": "https://jarr.herokuapp.com/",
"cdn_address": "",
"admin_email": "root@jarr.localhost",
"postmark_api_key": "",
- "recaptcha_public_key": "",
- "recaptcha_private_key": "",
"token_validity_period": "3600",
"nb_worker": "100",
"api_login": "",
@@ -79,9 +77,6 @@ else:
PLATFORM_URL = config.get('misc', 'platform_url')
ADMIN_EMAIL = config.get('misc', 'admin_email')
SELF_REGISTRATION = config.getboolean('misc', 'self_registration')
-RECAPTCHA_PUBLIC_KEY = config.get('misc', 'recaptcha_public_key')
-RECAPTCHA_PRIVATE_KEY = config.get('misc',
- 'recaptcha_private_key')
SECURITY_PASSWORD_SALT = config.get('misc', 'security_password_salt')
TOKEN_VALIDITY_PERIOD = config.getint('misc', 'token_validity_period')
LOG_PATH = os.path.abspath(config.get('misc', 'log_path'))
bgstack15