From 4a2010883edf2743bc6bb61ba04d70212702359b Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 22 Aug 2018 22:27:36 +0300 Subject: [PATCH] - Make the attributes that the webhook sends configurable. Thanks to omarsy and xet7 ! --- CHANGELOG.md | 6 ++++++ docker-compose.yml | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2aa7a4..f323090 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v0.22 2018-08-22 + +- Make the attributes that the webhook sends configurable. + +Thanks to GitHub users omarsy and xet7 for their contributions. + # v0.21 2018-08-14 * Add trusted URL and browser-policy optios. diff --git a/docker-compose.yml b/docker-compose.yml index 4edee7c..ae31e4b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -140,6 +140,10 @@ services: # When browser policy is enabled, HTML code at this Trusted URL can have iframe that embeds Wekan inside. - TRUSTED_URL='' #--------------------------------------------------------------- + # What to send to Outgoing Webhook, or leave out. Example, that includes all that are default: cardId,listId,oldListId,boardId,comment,user,card,commentId . + # example: WEBHOOKS_ATTRIBUTES=cardId,listId,oldListId,boardId,comment,user,card,commentId + - WEBHOOKS_ATTRIBUTES='' + #--------------------------------------------------------------- depends_on: - wekandb