Fix lint errors

This commit is contained in:
Andrés Manelli 2018-08-11 01:00:21 +02:00
parent 67301e07e2
commit 17308dc5f3
3 changed files with 127 additions and 134 deletions

View file

@ -246,10 +246,6 @@ Boards.helpers({
return Swimlanes.find({ boardId: this._id, archived: false }, { sort: { sort: 1 } });
},
cards() {
return Cards.find({ boardId: this._id, archived: false }, { sort: { sort: 1 } });
},
hasOvertimeCards(){
const card = Cards.findOne({isOvertime: true, boardId: this._id, archived: false} );
return card !== undefined;