From f7bb628996914355a2babd01cdc2646b01404b84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Klatt?= Date: Thu, 1 Jul 2021 13:26:24 +0200 Subject: [PATCH] TE-8674 Added new endpoints to the application (#8311) TE-8674 Separate different endpoint bootstraps --- ...equestTransactionEventDispatcherPlugin.php | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/Spryker/Zed/Monitoring/Communication/Plugin/EventDispatcher/GatewayMonitoringRequestTransactionEventDispatcherPlugin.php diff --git a/src/Spryker/Zed/Monitoring/Communication/Plugin/EventDispatcher/GatewayMonitoringRequestTransactionEventDispatcherPlugin.php b/src/Spryker/Zed/Monitoring/Communication/Plugin/EventDispatcher/GatewayMonitoringRequestTransactionEventDispatcherPlugin.php new file mode 100644 index 0000000..ebc0239 --- /dev/null +++ b/src/Spryker/Zed/Monitoring/Communication/Plugin/EventDispatcher/GatewayMonitoringRequestTransactionEventDispatcherPlugin.php @@ -0,0 +1,41 @@ +addSubscriber( + $this->getFactory()->createGatewayControllerListener() + ); + + return $eventDispatcher; + } +}