diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-02-18 21:41:50 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-02-18 21:41:50 +0100 |
commit | a2336c5de836267a4e88961422fc3f26cedab47e (patch) | |
tree | 18dbc1fb5d09cba02f5c54cae764f3610570d3ff /src/web/views | |
parent | fix migration script (diff) | |
download | newspipe-a2336c5de836267a4e88961422fc3f26cedab47e.tar.gz newspipe-a2336c5de836267a4e88961422fc3f26cedab47e.tar.bz2 newspipe-a2336c5de836267a4e88961422fc3f26cedab47e.zip |
we now specify the validity period of the activation link.
Diffstat (limited to 'src/web/views')
-rw-r--r-- | src/web/views/user.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/views/user.py b/src/web/views/user.py index 57153003..06dc2089 100644 --- a/src/web/views/user.py +++ b/src/web/views/user.py @@ -111,7 +111,7 @@ def confirm_account(token=None): user_contr = UserController() user, email = None, None if token != "": - email = confirm_token(token, expiration=3600) + email = confirm_token(token) if email: user = user_contr.read(email=email).first() if user is not None: |