summaryrefslogtreecommitdiffstats
path: root/models/cardComments.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-06-29 08:38:52 -0400
committerLauri Ojansivu <x@xet7.org>2019-06-29 08:38:52 -0400
commit40b782788afdf2d1cf5ecd9cf157526946f322c4 (patch)
treeb0aa59515089e84d86449dc246a4c0efed0253e9 /models/cardComments.js
parent100288b3e1bce882ab9923a5bff7b5f620f33ee8 (diff)
parent45163e2d2db3eb7c8b3edbdc133a9ea7e0594c5a (diff)
downloadwekan-40b782788afdf2d1cf5ecd9cf157526946f322c4.tar.gz
wekan-40b782788afdf2d1cf5ecd9cf157526946f322c4.tar.bz2
wekan-40b782788afdf2d1cf5ecd9cf157526946f322c4.zip
Merge branch 'justinr1234-linting' into meteor-1.8
Diffstat (limited to 'models/cardComments.js')
-rw-r--r--models/cardComments.js17
1 files changed, 5 insertions, 12 deletions
diff --git a/models/cardComments.js b/models/cardComments.js
index 8f727aa0..40723582 100644
--- a/models/cardComments.js
+++ b/models/cardComments.js
@@ -64,7 +64,7 @@ CardComments.attachSchema(
}
},
},
- })
+ }),
);
CardComments.allow({
@@ -107,11 +107,6 @@ function commentCreation(userId, doc) {
});
}
-CardComments.before.update((userId, doc, fieldNames, modifier, options) => {
- modifier.$set = modifier.$set || {};
- modifier.$set.modifiedAt = Date.now();
-});
-
if (Meteor.isServer) {
// Comments are often fetched within a card, so we create an index to make these
// queries more efficient.
@@ -125,7 +120,6 @@ if (Meteor.isServer) {
});
CardComments.after.update((userId, doc) => {
- const activity = Activities.findOne({ commentId: doc._id });
const card = Cards.findOne(doc.cardId);
Activities.insert({
userId,
@@ -139,7 +133,6 @@ if (Meteor.isServer) {
});
CardComments.before.remove((userId, doc) => {
- const activity = Activities.findOne({ commentId: doc._id });
const card = Cards.findOne(doc.cardId);
Activities.insert({
userId,
@@ -174,7 +167,7 @@ if (Meteor.isServer) {
*/
JsonRoutes.add('GET', '/api/boards/:boardId/cards/:cardId/comments', function(
req,
- res
+ res,
) {
try {
Authentication.checkUserId(req.userId);
@@ -233,7 +226,7 @@ if (Meteor.isServer) {
data: error,
});
}
- }
+ },
);
/**
@@ -280,7 +273,7 @@ if (Meteor.isServer) {
data: error,
});
}
- }
+ },
);
/**
@@ -318,7 +311,7 @@ if (Meteor.isServer) {
data: error,
});
}
- }
+ },
);
}