api: Increment API feature level to 414.

This commit is contained in:
Tim Abbott
2025-08-06 15:59:46 -07:00
parent c4cb75979a
commit f177598ecf
4 changed files with 18 additions and 15 deletions

View File

@@ -20,6 +20,20 @@ format used by the Zulip server that they are interacting with.
## Changes in Zulip 11.0
**Feature level 414**
* [`POST /channel_folders/create`](/api/create-channel-folder),
[`GET /channel_folders`](/api/get-channel-folders),
[`PATCH /channel_folders/{channel_folder_id}`](/api/update-channel-folder):
Added a new field `order` to show in which order should channel folders be
displayed. The list is 0-indexed and works similar to the `order` field of
custom profile fields.
* [`PATCH /channel_folders`](/api/patch-channel-folders): Added a new
endpoint for reordering channel folders. It accepts an array of channel
folder IDs arranged in the order the user desires it to be in.
* [`GET /channel_folders`](/api/get-channel-folders): Channel folders will
be ordered by the `order` field instead of `id` field when being returned.
**Feature level 413**
* Mobile push notification payloads for APNs no longer contain the

View File

@@ -1,11 +0,0 @@
* [`POST /channel_folders/create`](/api/create-channel-folder),
[`GET /channel_folders`](/api/get-channel-folders),
[`PATCH /channel_folders/{channel_folder_id}`](/api/update-channel-folder):
Added a new field `order` to show in which order should channel folders be
displayed. The list is 0-indexed and works similar to the `order` field of
custom profile fields.
* [`PATCH /channel_folders`](/api/patch-channel-folders): Added a new
endpoint for reordering channel folders. It accepts an array of channel
folder IDs arranged in the order the user desires it to be in.
* [`GET /channel_folders`](/api/get-channel-folders): Channel folders will
be ordered by the `order` field instead of `id` field when being returned.