summaryrefslogtreecommitdiffstats
path: root/models/attachments.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-09-16 01:50:36 +0300
committerLauri Ojansivu <x@xet7.org>2018-09-16 01:50:36 +0300
commitdf84a2be9adb2eeee25141588a80d4523d38675d (patch)
treed7defe25d43e41a76d9d11461cbc539ad01598c2 /models/attachments.js
parentb3a752ef34cb1cd324f7e2b55bebef81fb2281c3 (diff)
downloadwekan-df84a2be9adb2eeee25141588a80d4523d38675d.tar.gz
wekan-df84a2be9adb2eeee25141588a80d4523d38675d.tar.bz2
wekan-df84a2be9adb2eeee25141588a80d4523d38675d.zip
Fix lint errors.
Diffstat (limited to 'models/attachments.js')
-rw-r--r--models/attachments.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/models/attachments.js b/models/attachments.js
index d769de34..3da067de 100644
--- a/models/attachments.js
+++ b/models/attachments.js
@@ -87,11 +87,11 @@ if (Meteor.isServer) {
attachmentId: doc._id,
});
Activities.insert({
- userId,
- type: 'card',
- activityType: 'deleteAttachment',
- boardId: doc.boardId,
- cardId: doc.cardId,
- });
+ userId,
+ type: 'card',
+ activityType: 'deleteAttachment',
+ boardId: doc.boardId,
+ cardId: doc.cardId,
+ });
});
}