From a91a7028b61cf82b5a2e73f545af8283a05a2983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= Date: Sun, 18 Nov 2018 09:54:50 +0100 Subject: [PATCH 1/3] add tagList group on lead post save (#6861) --- app/bundles/LeadBundle/EventListener/WebhookSubscriber.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/bundles/LeadBundle/EventListener/WebhookSubscriber.php b/app/bundles/LeadBundle/EventListener/WebhookSubscriber.php index 756a33917b0..0531e1c5b1f 100644 --- a/app/bundles/LeadBundle/EventListener/WebhookSubscriber.php +++ b/app/bundles/LeadBundle/EventListener/WebhookSubscriber.php @@ -118,6 +118,7 @@ public function onLeadNewUpdate(LeadEvent $event) 'userList', 'publishDetails', 'ipAddress', + 'tagList', ] ); } From 745ddedbba79eff08e55556bc8aa97eccc4643c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= Date: Sun, 18 Nov 2018 11:30:58 +0100 Subject: [PATCH 2/3] add tagList group on lead points and channel subscription change --- app/bundles/LeadBundle/EventListener/WebhookSubscriber.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/bundles/LeadBundle/EventListener/WebhookSubscriber.php b/app/bundles/LeadBundle/EventListener/WebhookSubscriber.php index 0531e1c5b1f..312e34db6aa 100644 --- a/app/bundles/LeadBundle/EventListener/WebhookSubscriber.php +++ b/app/bundles/LeadBundle/EventListener/WebhookSubscriber.php @@ -143,6 +143,7 @@ public function onLeadPointChange(PointsChangeEvent $event) 'userList', 'publishDetails', 'ipAddress', + 'tagList', ] ); } @@ -187,6 +188,7 @@ public function onChannelSubscriptionChange(ChannelSubscriptionChange $event) 'userList', 'publishDetails', 'ipAddress', + 'tagList', ] ); } From 5fc5e162b9092dbdffb29984a0238346ef140150 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= Date: Sun, 18 Nov 2018 17:49:53 +0100 Subject: [PATCH 3/3] fix unit webhook subscriber unit test --- .../LeadBundle/Tests/EventListener/WebhookSubscriberTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/bundles/LeadBundle/Tests/EventListener/WebhookSubscriberTest.php b/app/bundles/LeadBundle/Tests/EventListener/WebhookSubscriberTest.php index 2c672cfc70e..5ed142515e1 100644 --- a/app/bundles/LeadBundle/Tests/EventListener/WebhookSubscriberTest.php +++ b/app/bundles/LeadBundle/Tests/EventListener/WebhookSubscriberTest.php @@ -154,6 +154,7 @@ public function testChannelChangeIsPickedUpByWebhook() 'userList', 'publishDetails', 'ipAddress', + 'tagList', ] );