From 4ad4c6ea2274919ced917e541120ad50c7512b80 Mon Sep 17 00:00:00 2001 From: Ghassen Rjab Date: Thu, 31 Aug 2017 22:14:57 +0100 Subject: Assign user to attachment before inserting --- client/components/cards/attachments.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'client/components/cards') diff --git a/client/components/cards/attachments.js b/client/components/cards/attachments.js index 4e3e0b19..95cb9f55 100644 --- a/client/components/cards/attachments.js +++ b/client/components/cards/attachments.js @@ -62,7 +62,7 @@ Template.cardAttachmentsPopup.events({ const file = new FS.File(f); file.boardId = card.boardId; file.cardId = card._id; - + file.userId = Meteor.userId(); Attachments.insert(file); Popup.close(); }); @@ -109,6 +109,7 @@ Template.previewClipboardImagePopup.events({ file.updatedAt(new Date()); file.boardId = card.boardId; file.cardId = card._id; + file.userId = Meteor.userId(); Attachments.insert(file); pastedResults = null; $(document.body).pasteImageReader(() => {}); -- cgit v1.2.3-1-g7c22