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

fix: Subscribe only when needed

This commit is contained in:
Maksim Eltyshev 2023-01-05 15:03:06 +01:00
parent 58afeb1e6b
commit 6021d67a00
10 changed files with 28 additions and 23 deletions

View file

@ -13,6 +13,9 @@ module.exports = {
regex: /^[0-9]+|me$/,
required: true,
},
subscribe: {
type: 'boolean',
},
},
exits: {
@ -26,8 +29,8 @@ module.exports = {
if (inputs.id === CURRENT_USER_ID) {
({ currentUser: user } = this.req);
if (this.req.isSocket) {
sails.sockets.join(this.req, `user:${user.id}`); // TODO: only when subscription needed
if (inputs.subscribe && this.req.isSocket) {
sails.sockets.join(this.req, `user:${user.id}`);
}
} else {
user = await sails.helpers.users.getOne(inputs.id);