1
0
Fork 0
mirror of https://github.com/overleaf/overleaf.git synced 2024-12-18 20:12:41 -05:00
overleaf/services/web/app/coffee/Features/User/UserSessionsRedis.coffee

10 lines
228 B
CoffeeScript
Raw Normal View History

RedisWrapper = require("../../infrastructure/RedisWrapper")
rclient = RedisWrapper.client("websessions")
module.exports = Redis =
client: () ->
return rclient
sessionSetKey: (user) ->
return "UserSessions:{#{user._id}}"