summaryrefslogtreecommitdiffstats
path: root/models
diff options
context:
space:
mode:
Diffstat (limited to 'models')
-rw-r--r--models/attachments.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/models/attachments.js b/models/attachments.js
index 91dd0dbc..d769de34 100644
--- a/models/attachments.js
+++ b/models/attachments.js
@@ -86,5 +86,12 @@ if (Meteor.isServer) {
Activities.remove({
attachmentId: doc._id,
});
+ Activities.insert({
+ userId,
+ type: 'card',
+ activityType: 'deleteAttachment',
+ boardId: doc.boardId,
+ cardId: doc.cardId,
+ });
});
}