Add AttachmentId to webhook data

This commit is contained in:
n8ores 2021-03-01 18:12:09 +13:00
parent ae8b17e0fb
commit 73f36bcf33

View file

@ -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]}"`;
});