Merge pull request #3620 from n8ores/master

Add attachmentId to the Webhook data
This commit is contained in:
Lauri Ojansivu 2021-03-02 15:50:53 +02:00 committed by GitHub
commit bf2446614c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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