summaryrefslogtreecommitdiffstats
path: root/server/notifications
diff options
context:
space:
mode:
authorOmar Sy <sy@net.elsys-design.com>2018-08-22 15:07:46 +0200
committerOmar Sy <sy@net.elsys-design.com>2018-08-22 15:07:46 +0200
commitfcbbb93bb663eec04e53230e447b2846f28d86e6 (patch)
tree08815484671c434089c1ed605f8e8423c895b6e6 /server/notifications
parentb3b8d3c0860b6060a939a2f9405b2e8b594368ee (diff)
downloadwekan-fcbbb93bb663eec04e53230e447b2846f28d86e6.tar.gz
wekan-fcbbb93bb663eec04e53230e447b2846f28d86e6.tar.bz2
wekan-fcbbb93bb663eec04e53230e447b2846f28d86e6.zip
change let to const
Diffstat (limited to 'server/notifications')
-rw-r--r--server/notifications/outgoing.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/notifications/outgoing.js b/server/notifications/outgoing.js
index 7e3ee60c..b35b3b2e 100644
--- a/server/notifications/outgoing.js
+++ b/server/notifications/outgoing.js
@@ -8,7 +8,7 @@ const postCatchError = Meteor.wrapAsync((url, options, resolve) => {
});
});
-let webhooksAtbts = ( (process.env.WEBHOOKS_ATTRIBUTES && process.env.WEBHOOKS_ATTRIBUTES.split(',') ) || ['cardId', 'listId', 'oldListId', 'boardId', 'comment', 'user', 'card', 'commentId']);
+const webhooksAtbts = ( (process.env.WEBHOOKS_ATTRIBUTES && process.env.WEBHOOKS_ATTRIBUTES.split(',') ) || ['cardId', 'listId', 'oldListId', 'boardId', 'comment', 'user', 'card', 'commentId']);
Meteor.methods({
outgoingWebhooks(integrations, description, params) {