Skip to content

Commit

Permalink
Merge pull request #73 from Wilcolab/fix/expir
Browse files Browse the repository at this point in the history
Update access token expiration time
  • Loading branch information
shem8 authored Oct 15, 2024
2 parents f7939f4 + f0454ad commit 5eb2419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/services/jwt.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

JWT_SUBJECT = "access"
ALGORITHM = "HS256"
ACCESS_TOKEN_EXPIRE_MINUTES = 60 * 24 * 7 # one week
ACCESS_TOKEN_EXPIRE_MINUTES = 60 # one week


def create_jwt_token(
Expand Down

0 comments on commit 5eb2419

Please sign in to comment.