Skip to content

Commit

Permalink
minor #6597 Fix batch_delete paths on docs (simondaigre)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
javiereguiluz committed Nov 28, 2024
2 parents a70284a + c3b2f58 commit 4b41dd2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/crud.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ CRUD route name CRUD route path
================== ======================
``*_index`` ``/``
``*_new`` ``/new``
``*_batchDelete`` ``/batch-delete``
``*_batch_delete`` ``/batch-delete``
``*_autocomplete`` ``/autocomplete``
``*_edit`` ``/{entityId}/edit``
``*_delete`` ``/{entityId}/delete``
Expand All @@ -65,7 +65,7 @@ Admin route name Admin route path
============================== ===============================
``admin_product_index`` ``/admin/product``
``admin_product_new`` ``/admin/product/new``
``admin_product_batchDelete`` ``/admin/product/batch-delete``
``admin_product_batch_delete`` ``/admin/product/batch-delete``
``admin_product_autocomplete`` ``/admin/product/autocomplete``
``admin_product_edit`` ``/admin/product/324/edit``
``admin_product_delete`` ``/admin/product/324/delete``
Expand Down Expand Up @@ -103,7 +103,7 @@ Admin route name Admin route path
============================== =====================================
``admin_product_index`` ``/admin/product/all``
``admin_product_create`` ``/admin/product/create``
``admin_product_batchDelete`` ``/admin/product/current/batch-delete``
``admin_product_batch_delete`` ``/admin/product/current/batch-delete``
``admin_product_autocomplete`` ``/admin/product/current/autocomplete``
``admin_product_editing`` ``/admin/product/current/editing-324``
``admin_product_delete`` ``/admin/product/remove/324``
Expand Down Expand Up @@ -138,7 +138,7 @@ Admin route name Admin route path
============================== =====================================
``admin_stock_index`` ``/admin/stock/current``
``admin_stock_new`` ``/admin/stock/current/new``
``admin_stock_batchDelete`` ``/admin/stock/current/batch-delete``
``admin_stock_batch_delete`` ``/admin/stock/current/batch-delete``
``admin_stock_autocomplete`` ``/admin/stock/current/autocomplete``
``admin_stock_edit`` ``/admin/stock/current/324/edit``
``admin_stock_delete`` ``/admin/stock/current/324/delete``
Expand Down

0 comments on commit 4b41dd2

Please sign in to comment.