From ac7d16c40fb7d86b2bacfb870c9d8adefcf597fa Mon Sep 17 00:00:00 2001 From: David Arnold Date: Wed, 16 Sep 2020 15:17:47 -0500 Subject: [PATCH] fixup! Ref: Attachments to use modern gridfs (rm localstore) --- server/publications/boards.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/publications/boards.js b/server/publications/boards.js index 6ed9f94ee..8c50c4c04 100644 --- a/server/publications/boards.js +++ b/server/publications/boards.js @@ -235,7 +235,7 @@ Meteor.publishRelations('board', function(boardId, isArchived) { cardCommentsLinkedBoard.selector = _ids => ({ boardId: _ids }); const cardCommentReactions = this.join(CardCommentReactions); cardCommentReactions.selector = _ids => ({ cardId: _ids }); - const attachments = this.join(Attachments); + const attachments = this.join(Attachments.collection); attachments.selector = _ids => ({ cardId: _ids }); const checklists = this.join(Checklists); checklists.selector = _ids => ({ cardId: _ids });