1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-23 15:19:44 +02:00

fix: Socket bug fixes and improvements

This commit is contained in:
Maksim Eltyshev 2022-10-03 12:11:19 +02:00
parent 4e876922f8
commit 9f16881965
6 changed files with 53 additions and 32 deletions

View file

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