Fixed some rules

This commit is contained in:
Angelo Gallarello 2018-09-21 14:22:00 +02:00
parent 254c7fe951
commit 37a53e7466
3 changed files with 8 additions and 8 deletions

View file

@ -130,7 +130,7 @@ function publishChekListCompleted(userId, doc, fieldNames, modifier){
cardId: doc.cardId,
boardId,
checklistId: doc.checklistId,
checklistName:doc.title,
checklistName:checkList.title,
};
Activities.insert(act);
}
@ -148,7 +148,7 @@ function publishChekListUncompleted(userId, doc, fieldNames, modifier){
cardId: doc.cardId,
boardId,
checklistId: doc.checklistId,
checklistName:doc.title,
checklistName:checkList.title,
};
Activities.insert(act);
}