summaryrefslogtreecommitdiffstats
path: root/server/notifications
diff options
context:
space:
mode:
authorSam X. Chen <sam.xi.chen@gmail.com>2019-08-29 23:49:32 -0400
committerSam X. Chen <sam.xi.chen@gmail.com>2019-08-29 23:49:32 -0400
commitb477fc1b1c45e36460f061e0bdcc357188eea372 (patch)
treeaff0588b497bb03c3364f9c67ea43025eecececc /server/notifications
parent58155288fb27e0486f298b00798a550516d4d0ef (diff)
downloadwekan-b477fc1b1c45e36460f061e0bdcc357188eea372.tar.gz
wekan-b477fc1b1c45e36460f061e0bdcc357188eea372.tar.bz2
wekan-b477fc1b1c45e36460f061e0bdcc357188eea372.zip
Add Feature: enable two-way webhooks - fixing lint error
Diffstat (limited to 'server/notifications')
-rw-r--r--server/notifications/outgoing.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/notifications/outgoing.js b/server/notifications/outgoing.js
index 850b3acd..6fe90d93 100644
--- a/server/notifications/outgoing.js
+++ b/server/notifications/outgoing.js
@@ -41,7 +41,8 @@ Meteor.methods({
const paramCardId = data.cardId;
const paramBoardId = data.boardId;
const newComment = data.comment;
- if (paramCardId && paramBoardId && newComment) { // only process data with the cardid, boardid and comment text, TODO can expand other functions here to react on returned data
+ if (paramCardId && paramBoardId && newComment) {
+ // only process data with the cardid, boardid and comment text, TODO can expand other functions here to react on returned data
const comment = CardComments.findOne({
_id: paramCommentId,
cardId: paramCardId,