summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-06-26 23:06:50 +0300
committerLauri Ojansivu <x@xet7.org>2019-06-26 23:06:50 +0300
commit6a2f120d00b5ce9089ad2e12d01edb1ed9f94800 (patch)
tree426068c08ccf0ca126432f0644273fedada865f2 /client
parente8ccfb6743ce027450acfd32f5325aad76e60f8d (diff)
downloadwekan-6a2f120d00b5ce9089ad2e12d01edb1ed9f94800.tar.gz
wekan-6a2f120d00b5ce9089ad2e12d01edb1ed9f94800.tar.bz2
wekan-6a2f120d00b5ce9089ad2e12d01edb1ed9f94800.zip
Fix Attachment Outgoing Webhook missing list and swimlane name.
Thanks to xet7 ! Related #1969, Closes #2170
Diffstat (limited to 'client')
-rw-r--r--client/components/cards/attachments.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/components/cards/attachments.js b/client/components/cards/attachments.js
index 5cac930d..e3dc143a 100644
--- a/client/components/cards/attachments.js
+++ b/client/components/cards/attachments.js
@@ -62,6 +62,8 @@ Template.cardAttachmentsPopup.events({
file.cardId = card.linkedId;
} else {
file.boardId = card.boardId;
+ file.swimlaneId = card.swimlaneId;
+ file.listId = card.listId;
file.cardId = card._id;
}
file.userId = Meteor.userId();