Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-09-10 15:08:54 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-09-10 15:08:54 +0300
commit766b24b86ba1c5405d6a300f35062c33108941d4 (patch)
treeee9a661db63c6257ebce580882fe539bfce3c492 /doc/api/issues.md
parent1385b54a3e44a90a463d4975bd639089be056778 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/issues.md')
-rw-r--r--doc/api/issues.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/issues.md b/doc/api/issues.md
index b1ab5c96fcb..df9eaab7962 100644
--- a/doc/api/issues.md
+++ b/doc/api/issues.md
@@ -1181,9 +1181,9 @@ PUT /projects/:id/issues/:issue_iid/reorder
| Attribute | Type | Required | Description |
|-------------|---------|----------|--------------------------------------|
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user |
-| `issue_iid` | integer | yes | The internal ID of a project's issue |
-| `move_after_id` | integer | no | The ID of a project's issue to move this issue after |
-| `move_before_id` | integer | no | The ID of a project's issue to move this issue before |
+| `issue_iid` | integer | yes | The internal ID of the project's issue |
+| `move_after_id` | integer | no | The ID of a project's issue that should be placed after this issue |
+| `move_before_id` | integer | no | The ID of a project's issue that should be placed before this issue |
```shell
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/4/issues/85/reorder?move_after_id=51&move_before_id=92"