Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FWR-9121 Fixed broken robot test #430

Merged
merged 8 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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(),
];
}
}
Loading