- Fix lint errors.

Note: variable trackingUsers is not used anywhere, so it was removed.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2018-10-11 23:41:50 +03:00
parent b4402b72ac
commit 178beee476
2 changed files with 1 additions and 2 deletions

View file

@ -151,7 +151,6 @@ if (Meteor.isServer) {
}
if (board) {
const watchingUsers = _.pluck(_.where(board.watchers, {level: 'watching'}), 'userId');
const trackingUsers = _.pluck(_.where(board.watchers, {level: 'tracking'}), 'userId');
watchers = _.union(watchers, watchingUsers || []);
}

View file

@ -341,4 +341,4 @@ Migrations.add('remove-tag', () => {
'profile.tags':1,
},
}, noValidateMulti);
});
});