aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/views/api/common.py')
-rw-r--r--src/web/views/api/common.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/web/views/api/common.py b/src/web/views/api/common.py
index 3476cad9..c155a254 100644
--- a/src/web/views/api/common.py
+++ b/src/web/views/api/common.py
@@ -54,8 +54,7 @@ def authenticate(func):
if auth is not None:
user = User.query.filter(
User.nickname == auth.username).first()
- if user and user.check_password(auth.password) \
- and user.activation_key == "":
+ if user and user.check_password(auth.password) and user.enabled:
g.user = user
logged_in = True
if logged_in:
bgstack15