Add AttachmentId to webhook data

reviewable/pr3620/r1
n8ores 4 years ago
parent ae8b17e0fb
commit 73f36bcf33
  1. 2
      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]}"`;
});

Loading…
Cancel
Save