Skip to content

Commit 4b41dd2

Browse files
committedNov 28, 2024·
minor #6597 Fix batch_delete paths on docs (simondaigre)
This PR was merged into the 4.x branch. Discussion ---------- Fix batch_delete paths on docs Spotted while reading https://github.com/EasyCorp/EasyAdminBundle/releases/tag/v4.17.0 changelog, current doc is wrong: correct path is `_batch_delete`, not `_batchDelete`. See here: https://github.com/EasyCorp/EasyAdminBundle/blob/aee6650a8ec414b642616cc68389e8d260b3ceb5/src/Router/AdminRouteGenerator.php#L30-L33 Commits ------- c3b2f58 Update docs
2 parents a70284a + c3b2f58 commit 4b41dd2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎doc/crud.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ CRUD route name CRUD route path
4949
================== ======================
5050
``*_index`` ``/``
5151
``*_new`` ``/new``
52-
``*_batchDelete`` ``/batch-delete``
52+
``*_batch_delete`` ``/batch-delete``
5353
``*_autocomplete`` ``/autocomplete``
5454
``*_edit`` ``/{entityId}/edit``
5555
``*_delete`` ``/{entityId}/delete``
@@ -65,7 +65,7 @@ Admin route name Admin route path
6565
============================== ===============================
6666
``admin_product_index`` ``/admin/product``
6767
``admin_product_new`` ``/admin/product/new``
68-
``admin_product_batchDelete`` ``/admin/product/batch-delete``
68+
``admin_product_batch_delete`` ``/admin/product/batch-delete``
6969
``admin_product_autocomplete`` ``/admin/product/autocomplete``
7070
``admin_product_edit`` ``/admin/product/324/edit``
7171
``admin_product_delete`` ``/admin/product/324/delete``
@@ -103,7 +103,7 @@ Admin route name Admin route path
103103
============================== =====================================
104104
``admin_product_index`` ``/admin/product/all``
105105
``admin_product_create`` ``/admin/product/create``
106-
``admin_product_batchDelete`` ``/admin/product/current/batch-delete``
106+
``admin_product_batch_delete`` ``/admin/product/current/batch-delete``
107107
``admin_product_autocomplete`` ``/admin/product/current/autocomplete``
108108
``admin_product_editing`` ``/admin/product/current/editing-324``
109109
``admin_product_delete`` ``/admin/product/remove/324``
@@ -138,7 +138,7 @@ Admin route name Admin route path
138138
============================== =====================================
139139
``admin_stock_index`` ``/admin/stock/current``
140140
``admin_stock_new`` ``/admin/stock/current/new``
141-
``admin_stock_batchDelete`` ``/admin/stock/current/batch-delete``
141+
``admin_stock_batch_delete`` ``/admin/stock/current/batch-delete``
142142
``admin_stock_autocomplete`` ``/admin/stock/current/autocomplete``
143143
``admin_stock_edit`` ``/admin/stock/current/324/edit``
144144
``admin_stock_delete`` ``/admin/stock/current/324/delete``

0 commit comments

Comments
 (0)
Please sign in to comment.