mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
api: Increment API feature level to 414.
This commit is contained in:
@@ -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
|
||||
|
@@ -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.
|
@@ -34,7 +34,7 @@ DESKTOP_WARNING_VERSION = "5.9.3"
|
||||
# new level means in api_docs/changelog.md, as well as "**Changes**"
|
||||
# entries in the endpoint's documentation in `zulip.yaml`.
|
||||
|
||||
API_FEATURE_LEVEL = 413
|
||||
API_FEATURE_LEVEL = 414
|
||||
|
||||
# Bump the minor PROVISION_VERSION to indicate that folks should provision
|
||||
# only when going from an old version of the code to a newer version. Bump
|
||||
|
@@ -24455,7 +24455,7 @@ paths:
|
||||
Fetches all of the channel folders in the organization.
|
||||
The folders are sorted by the `order` field.
|
||||
|
||||
**Changes**: Before Zulip 11.0 (feature level ZF-fcae8c),
|
||||
**Changes**: Before Zulip 11.0 (feature level 414),
|
||||
these were sorted by ID. (The `order` field didn't exist).
|
||||
|
||||
New in Zulip 11.0 (feature level 389).
|
||||
@@ -24529,7 +24529,7 @@ paths:
|
||||
property of all of the channel folders in the organization according to
|
||||
the order of the channel folder IDs specified in the request.
|
||||
|
||||
**Changes**: New in Zulip 11.0 (feature level ZF-fcae8c).
|
||||
**Changes**: New in Zulip 11.0 (feature level 414).
|
||||
requestBody:
|
||||
required: true
|
||||
content:
|
||||
@@ -27619,7 +27619,7 @@ components:
|
||||
displayed in the UI. The value is 0 indexed, and the value with
|
||||
the lower order will be displayed first.
|
||||
|
||||
**Changes**: New in Zulip 11.0 (feature level ZF-fcae8c).
|
||||
**Changes**: New in Zulip 11.0 (feature level 414).
|
||||
id:
|
||||
type: integer
|
||||
description: |
|
||||
|
Reference in New Issue
Block a user