summaryrefslogtreecommitdiffstats
path: root/models/cards.js
diff options
context:
space:
mode:
authorwindblow <cskim.ns@gmail.com>2019-04-06 12:45:31 +0300
committerwindblow <cskim.ns@gmail.com>2019-04-06 12:45:31 +0300
commit143e93f483c947185d7db1380bad23005e3d946c (patch)
treebb46902f7c92d81ae2753d4d5a013eca90a54a58 /models/cards.js
parentb680bb53725103f186ac1c7cb604fbd4a5773051 (diff)
downloadwekan-143e93f483c947185d7db1380bad23005e3d946c.tar.gz
wekan-143e93f483c947185d7db1380bad23005e3d946c.tar.bz2
wekan-143e93f483c947185d7db1380bad23005e3d946c.zip
Add variables for activity notifications Fixes #2285
Diffstat (limited to 'models/cards.js')
-rw-r--r--models/cards.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/models/cards.js b/models/cards.js
index 047a760e..e65d88ae 100644
--- a/models/cards.js
+++ b/models/cards.js
@@ -1355,6 +1355,7 @@ function cardState(userId, doc, fieldNames) {
boardId: doc.boardId,
listId: doc.listId,
cardId: doc._id,
+ swimlaneId: doc.swimlaneId,
});
} else {
Activities.insert({
@@ -1364,6 +1365,7 @@ function cardState(userId, doc, fieldNames) {
listName: Lists.findOne(doc.listId).title,
listId: doc.listId,
cardId: doc._id,
+ swimlaneId: doc.swimlaneId,
});
}
}
@@ -1425,6 +1427,8 @@ function cardLabels(userId, doc, fieldNames, modifier) {
activityType: 'addedLabel',
boardId: doc.boardId,
cardId: doc._id,
+ listId: doc.listId,
+ swimlaneId: doc.swimlaneId,
};
Activities.insert(act);
}
@@ -1441,6 +1445,8 @@ function cardLabels(userId, doc, fieldNames, modifier) {
activityType: 'removedLabel',
boardId: doc.boardId,
cardId: doc._id,
+ listId: doc.listId,
+ swimlaneId: doc.swimlaneId,
});
}
}