Skip to content

Commit

Permalink
Merge pull request #430 from spryker-shop/bugfix/frw-9121/master-fixe…
Browse files Browse the repository at this point in the history
…d-broken-robot-test

FWR-9121 Fixed broken robot test
  • Loading branch information
asmarovydlo authored Oct 2, 2024
2 parents 8ae9729 + 2c4590f commit 6838ce4
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 3 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@
"spryker/product-discontinued-product-label-connector": "^1.4.0",
"spryker/product-discontinued-rest-api": "^1.0.1",
"spryker/product-discount-connector": "^5.2.0",
"spryker/product-dynamic-entity-connector": "1.0.0",
"spryker/product-image-cart-connector": "^1.3.0",
"spryker/product-image-sets-backend-api": "^1.0.0",
"spryker/product-image-sets-rest-api": "^1.0.5",
Expand Down
51 changes: 48 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/Pyz/Zed/DynamicEntity/DynamicEntityDependencyProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
use Spryker\Zed\CategoryDynamicEntityConnector\Communication\Plugin\DynamicEntity\CategoryUrlDynamicEntityPostCreatePlugin;
use Spryker\Zed\CategoryDynamicEntityConnector\Communication\Plugin\DynamicEntity\CategoryUrlDynamicEntityPostUpdatePlugin;
use Spryker\Zed\DynamicEntity\DynamicEntityDependencyProvider as SprykerDynamicEntityDependencyProvider;
use Spryker\Zed\ProductDynamicEntityConnector\Communication\Plugin\DynamicEntity\ProductAbstractLocalizedAttributesDynamicEntityPostCreatePlugin;
use Spryker\Zed\ProductDynamicEntityConnector\Communication\Plugin\DynamicEntity\ProductAbstractLocalizedAttributesDynamicEntityPostUpdatePlugin;

class DynamicEntityDependencyProvider extends SprykerDynamicEntityDependencyProvider
{
Expand All @@ -29,6 +31,7 @@ protected function getDynamicEntityPostUpdatePlugins(): array
new CategoryClosureTableDynamicEntityPostUpdatePlugin(),
new CategoryUrlDynamicEntityPostUpdatePlugin(),
new CategoryTreeDynamicEntityPostUpdatePlugin(),
new ProductAbstractLocalizedAttributesDynamicEntityPostUpdatePlugin(),
];
}

Expand All @@ -42,6 +45,7 @@ protected function getDynamicEntityPostCreatePlugins(): array
new CategoryClosureTableDynamicEntityPostCreatePlugin(),
new CategoryUrlDynamicEntityPostCreatePlugin(),
new CategoryTreeDynamicEntityPostCreatePlugin(),
new ProductAbstractLocalizedAttributesDynamicEntityPostCreatePlugin(),
];
}
}

0 comments on commit 6838ce4

Please sign in to comment.