summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-08-15 23:44:07 +0300
committerLauri Ojansivu <x@xet7.org>2018-08-15 23:44:07 +0300
commitc694505885ef3ff622af92d3f03d696071013066 (patch)
treec96ab42212defccedd0ecb5814fbf30df034810f /server
parent807c6ce09e4b5d49049d343d73bbca24fa84d527 (diff)
parent9fc3de8502919f9aeb18c9f8ea3b0678b66ce176 (diff)
downloadwekan-c694505885ef3ff622af92d3f03d696071013066.tar.gz
wekan-c694505885ef3ff622af92d3f03d696071013066.tar.bz2
wekan-c694505885ef3ff622af92d3f03d696071013066.zip
Merge branch 'devel' of github.com:wekan/wekan into devel
Diffstat (limited to 'server')
-rw-r--r--server/publications/boards.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/server/publications/boards.js b/server/publications/boards.js
index b68f7360..fb4c8c84 100644
--- a/server/publications/boards.js
+++ b/server/publications/boards.js
@@ -103,14 +103,12 @@ Meteor.publishRelations('board', function(boardId) {
const impCardId = card.linkedId;
this.cursor(Cards.find({ _id: impCardId }));
this.cursor(CardComments.find({ cardId: impCardId }));
- this.cursor(Activities.find({ cardId: impCardId }));
this.cursor(Attachments.find({ cardId: impCardId }));
this.cursor(Checklists.find({ cardId: impCardId }));
this.cursor(ChecklistItems.find({ cardId: impCardId }));
} else if (card.type === 'cardType-linkedBoard') {
this.cursor(Boards.find({ _id: card.linkedId}));
}
- this.cursor(Activities.find({ cardId }));
this.cursor(CardComments.find({ cardId }));
this.cursor(Attachments.find({ cardId }));
this.cursor(Checklists.find({ cardId }));