diff options
Diffstat (limited to 'thallium-backend/src/auth.py')
| -rw-r--r-- | thallium-backend/src/auth.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/thallium-backend/src/auth.py b/thallium-backend/src/auth.py index 98dc540..1870b72 100644 --- a/thallium-backend/src/auth.py +++ b/thallium-backend/src/auth.py @@ -72,7 +72,6 @@ class TokenAuth(HTTPBearer): if res.require_password_change: raise HTTPException(status_code=403, detail="You must reset your password.") - log.info(jwt_data["iat"]) if datetime.fromtimestamp(jwt_data["iat"], tz=UTC) < res.password_set_at: raise HTTPException(status_code=403, detail="Token invalid, password changed.") return res |