- Issue created by @starlight-sparkle
After clicking "save" on the rule creation form, WSOD due to route parameter "example" not provided.
1. Install the module
2. Create a rule. Fill in all necessary values. The specific values do not matter.
3. Try to save the new rule.
This is caused by placeholder entity links generated by DCG in the entity class annotation not being correctly populated.
The values:
/**
* links = {
* "edit-form" = "/admin/commerce/config/products/commerce_cart_skip/{example}",
* "delete-form" = "/admin/commerce/config/products/commerce_cart_skip/{example}/delete",
* }
*/
should be
/**
* links = {
* "edit-form" = "/admin/commerce/config/products/commerce_cart_skip/{commerce_cart_skip_rule}",
* "delete-form" = "/admin/commerce/config/products/commerce_cart_skip/{commerce_cart_skip_rule}/delete",
* }
*/
Active
1.0
Code