mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
[API] Add default sorting order for customers admin GET endpoint
This commit is contained in:
parent
593bd945c8
commit
97a257e4f6
2 changed files with 13 additions and 0 deletions
|
|
@ -1,3 +1,13 @@
|
|||
# UPGRADE FROM `v1.13.6` TO `v1.13.7`
|
||||
|
||||
1. The default order attribute has been added to the endpoint GET `/admin/customers` endpoint
|
||||
|
||||
```diff
|
||||
+ <attribute name="order">
|
||||
+ <attribute name="createdAt">DESC</attribute>
|
||||
+ </attribute>
|
||||
```
|
||||
|
||||
# UPGRADE FROM `v1.13.3` TO `v1.13.4`
|
||||
|
||||
1. The `api/v2/shop/adjustments/{id}` endpoint has been disabled.
|
||||
|
|
|
|||
|
|
@ -31,6 +31,9 @@
|
|||
<attribute name="filters">
|
||||
<attribute>sylius.api.customer_group_filter</attribute>
|
||||
</attribute>
|
||||
<attribute name="order">
|
||||
<attribute name="createdAt">DESC</attribute>
|
||||
</attribute>
|
||||
</collectionOperation>
|
||||
|
||||
<collectionOperation name="admin_post">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue