1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

feat: Automatic logout when session expires

Closes #693
This commit is contained in:
Maksim Eltyshev 2024-04-09 15:12:46 +02:00
parent 7273b33768
commit 4fe77c305c
15 changed files with 130 additions and 42 deletions

View file

@ -61,6 +61,7 @@ module.exports = function defineCurrentUserHook(sails) {
});
if (req.isSocket) {
sails.sockets.join(req, `@accessToken:${accessToken}`);
sails.sockets.join(req, `@user:${currentUser.id}`);
}
}