sessions hav expiry dates

This commit is contained in:
counterweight 2025-02-10 12:17:15 +01:00
parent b4bd150d93
commit e528f1351a
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
3 changed files with 28 additions and 1 deletions

5
src/constants.js Normal file
View file

@ -0,0 +1,5 @@
const DEFAULT_SESSION_DURATION_SECONDS = 60 * 60 * 24 * 30;
module.exports = {
DEFAULT_SESSION_DURATION_SECONDS
}