mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
Add some IDs to webhook body
This commit is contained in:
parent
1e7e9d2715
commit
a96ece2c11
2 changed files with 10 additions and 0 deletions
|
|
@ -28,6 +28,11 @@ Meteor.methods({
|
|||
text: `${text}`,
|
||||
};
|
||||
|
||||
['cardId', 'listId', 'oldListId', 'boardId'].forEach((key) => {
|
||||
if (params[key]) value[key] = params[key];
|
||||
});
|
||||
value['description'] = description;
|
||||
|
||||
const options = {
|
||||
headers: {
|
||||
// 'Content-Type': 'application/json',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue