Skip to content

Commit

Permalink
Extend JWT expiry time
Browse files Browse the repository at this point in the history
  • Loading branch information
judtinzhang committed Apr 25, 2024
1 parent 9e7d036 commit af43016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/identity/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


SIGNING_ALG = "RS256"
EXPIRY_TIME = 15 * 60 # 15 minutes
EXPIRY_TIME = 60 * 60 # 60 minutes
ID_PRIVATE_KEY = jwk.JWK.from_pem(settings.IDENTITY_RSA_PRIVATE_KEY.encode("utf-8"))


Expand Down

0 comments on commit af43016

Please sign in to comment.