Reset password token is valid for 1 hour

This commit is contained in:
Rebecca Law
2016-01-11 10:44:04 +00:00
parent f7373ee5fc
commit 806c584b03

View File

@@ -29,7 +29,7 @@ class Config(object):
SECRET_KEY = 'secret-key'
HTTP_PROTOCOL = 'http'
DANGEROUS_SALT = 'itsdangeroussalt'
TOKEN_MAX_AGE_SECONDS = 86400
TOKEN_MAX_AGE_SECONDS = 120
class Development(Config):