diff --git a/src/Model/Entity/Integration/EmbedJs/EmbedJsPage.php b/src/Model/Entity/Integration/EmbedJs/EmbedJsPage.php index 9476d4db..3778b27b 100644 --- a/src/Model/Entity/Integration/EmbedJs/EmbedJsPage.php +++ b/src/Model/Entity/Integration/EmbedJs/EmbedJsPage.php @@ -66,4 +66,12 @@ class EmbedJsPage * @JMS\SerializedName("pageHelpLink") */ public $pageHelpLink; + + /** + * @var bool + * + * @JMS\Type("bool") + * @JMS\SerializedName("isSettingsMainPage") + */ + public $isSettingsMainPage; } diff --git a/tests/src/ResourceGroup/IntegrationTests.php b/tests/src/ResourceGroup/IntegrationTests.php index fb59b13c..3266ca98 100644 --- a/tests/src/ResourceGroup/IntegrationTests.php +++ b/tests/src/ResourceGroup/IntegrationTests.php @@ -188,6 +188,7 @@ public function testEmbedJsEdit(): void $page->menuItemOrdering = 100; $page->menuItemTitle = $menuItemTitle; $page->pageHelpLink = $pageHelpLink; + $page->isSettingsMainPage = true; $module = new IntegrationModule(); $module->integrations = new Integrations(); @@ -237,6 +238,7 @@ public function testEmbedJsEdit(): void 'es' => 'https://example.com/help/es', 'ru' => 'https://example.com/help/ru', ], + 'isSettingsMainPage' => true, ], ], ], $integrationModule['integrations']['embedJs']);