Skip to content

Commit

Permalink
fix: bump session cookie ttl to 1 week (#107)
Browse files Browse the repository at this point in the history
Co-authored-by: Nimish <[email protected]>
  • Loading branch information
rohan-chaturvedi and nimish-ks authored Nov 12, 2023
1 parent 150a68e commit aada91f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/backend/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

SESSION_COOKIE_DOMAIN = os.getenv('SESSION_COOKIE_DOMAIN')

SESSION_COOKIE_AGE = 86400 # 24 hours
SESSION_COOKIE_AGE = 604800 # 1 week, in seconds

# Application definition

Expand Down

0 comments on commit aada91f

Please sign in to comment.