summaryrefslogtreecommitdiffstats
path: root/models/checklistItems.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-12-05 15:21:24 +0200
committerLauri Ojansivu <x@xet7.org>2018-12-05 15:21:24 +0200
commit40cf1c7549b10ce13f59083870f5b8ea4089156a (patch)
tree758cad39531baa98aa8d3b6a6cda797a407b9f32 /models/checklistItems.js
parent9c4e305a84ae4c32de9929ec95290efc596508e4 (diff)
downloadwekan-40cf1c7549b10ce13f59083870f5b8ea4089156a.tar.gz
wekan-40cf1c7549b10ce13f59083870f5b8ea4089156a.tar.bz2
wekan-40cf1c7549b10ce13f59083870f5b8ea4089156a.zip
- Fix IFTTT Rule action/trigger: When a checklist is completed/made incomplete.
Thanks to BurakTuran9 ! Related #1972
Diffstat (limited to 'models/checklistItems.js')
-rw-r--r--models/checklistItems.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/checklistItems.js b/models/checklistItems.js
index c85c0260..0f85019e 100644
--- a/models/checklistItems.js
+++ b/models/checklistItems.js
@@ -126,7 +126,7 @@ function publishChekListCompleted(userId, doc){
if(checkList.isFinished()){
const act = {
userId,
- activityType: 'checklistCompleted',
+ activityType: 'completeChecklist',
cardId: doc.cardId,
boardId,
checklistId: doc.checklistId,