From 73f36bcf33caedc1aec1ac49b7cb36e20572e8f8 Mon Sep 17 00:00:00 2001 From: n8ores Date: Mon, 1 Mar 2021 18:12:09 +1300 Subject: [PATCH] Add AttachmentId to webhook data --- server/notifications/outgoing.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/notifications/outgoing.js b/server/notifications/outgoing.js index 1f543ad52..5855e005e 100644 --- a/server/notifications/outgoing.js +++ b/server/notifications/outgoing.js @@ -63,6 +63,7 @@ if (Meteor.isServer) { 'swimlaneId', 'customField', 'customFieldValue', + 'attachmentId' ]; const responseFunc = data => { const paramCommentId = data.commentId; @@ -124,6 +125,7 @@ if (Meteor.isServer) { 'oldSwimlane', 'label', 'attachment', + 'attachmentId' ].forEach(key => { if (quoteParams[key]) quoteParams[key] = `"${params[key]}"`; });