Add checklist items model, migration and publication

This commit is contained in:
Andrés Manelli 2018-03-19 00:25:19 -03:00
parent 83848dbee2
commit bf7de463f1
4 changed files with 116 additions and 26 deletions

View file

@ -101,6 +101,7 @@ Meteor.publishRelations('board', function(boardId) {
this.cursor(CardComments.find({ cardId }));
this.cursor(Attachments.find({ cardId }));
this.cursor(Checklists.find({ cardId }));
this.cursor(ChecklistItems.find({ cardId }));
});
if (board.members) {