fixup! Ref: Attachments to use modern gridfs (rm localstore)

This commit is contained in:
David Arnold 2020-09-16 15:17:47 -05:00
parent 64dcc70bd2
commit 557aed6a38
No known key found for this signature in database
GPG key ID: 6D6A936E69C59D08

View file

@ -133,7 +133,7 @@ Meteor.publishRelations('board', function(boardId, isArchived) {
// Gather queries and send in bulk
const cardComments = this.join(CardComments);
cardComments.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 });