Fixed triggers to use names and not id

This commit is contained in:
Angelo Gallarello 2018-08-17 14:16:56 +02:00
parent 2f24dcfc7d
commit 3b62b5ec5d
7 changed files with 157 additions and 54 deletions

View file

@ -91,6 +91,7 @@ if (Meteor.isServer) {
cardId: doc.cardId,
boardId: Cards.findOne(doc.cardId).boardId,
checklistId: doc._id,
checklistName:doc.title
});
});
@ -107,6 +108,7 @@ if (Meteor.isServer) {
cardId: doc.cardId,
boardId: Cards.findOne(doc.cardId).boardId,
checklistId: doc._id,
checklistName:doc.title
});