summaryrefslogtreecommitdiffstats
path: root/server/notifications
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-03-25 16:59:12 +0200
committerLauri Ojansivu <x@xet7.org>2019-03-25 16:59:12 +0200
commit08c8ebc1001768208391a3834296ff47db782639 (patch)
tree05a05900a649c906fd57ec4c2bea689abbb62a93 /server/notifications
parent0039fe09bed435c76365b3c21bba181c8bfa8d40 (diff)
downloadwekan-08c8ebc1001768208391a3834296ff47db782639.tar.gz
wekan-08c8ebc1001768208391a3834296ff47db782639.tar.bz2
wekan-08c8ebc1001768208391a3834296ff47db782639.zip
- Fix typos.
- Fix Outgoing Webhook message about created new swimlane. Related #1969
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 257fbda1..30744555 100644
--- a/server/notifications/outgoing.js
+++ b/server/notifications/outgoing.js
@@ -18,7 +18,7 @@ Meteor.methods({
// label activity did not work yet, see wekan/models/activities.js
const quoteParams = _.clone(params);
- ['card', 'list', 'oldList', 'board', 'oldBoard', 'comment', 'checklist', 'swimlane', 'oldSwimlane'].forEach((key) => {
+ ['card', 'list', 'oldList', 'board', 'oldBoard', 'comment', 'checklist', 'swimlane', 'oldSwimlane', 'label'].forEach((key) => {
if (quoteParams[key]) quoteParams[key] = `"${params[key]}"`;
});