Extending logout TTL from a day to a week.
This commit is contained in:
parent
a7e779639d
commit
d9afc58401
|
@ -1,6 +1,7 @@
|
||||||
const redis = require("../redis/authRedis")
|
const redis = require("../redis/authRedis")
|
||||||
|
|
||||||
const EXPIRY_SECONDS = 86400
|
// a week in seconds
|
||||||
|
const EXPIRY_SECONDS = 86400 * 7
|
||||||
|
|
||||||
async function getSessionsForUser(userId) {
|
async function getSessionsForUser(userId) {
|
||||||
const client = await redis.getSessionClient()
|
const client = await redis.getSessionClient()
|
||||||
|
|
Loading…
Reference in New Issue