diff options
author | Markus Koller <mkoller@gitlab.com> | 2019-08-19 20:55:56 +0200 |
---|---|---|
committer | Markus Koller <mkoller@gitlab.com> | 2019-08-19 21:01:40 +0200 |
commit | 44ca24f4f25c022904d3dc8641ddf1cf10fe8fae (patch) | |
tree | 4f8fe5627835cc001f1368ca549ed47b66264928 | |
parent | 070689cb433c6e7a160af08cd8a5c9cda94796bd (diff) | |
download | gitlab-ce-44ca24f4f25c022904d3dc8641ddf1cf10fe8fae.tar.gz |
Fix outdated references to soft deletiondocs-fix-soft-deletion
We stopped using soft deletion for issues and merge requests in
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/15789,
and for boards we apparently never used it.
-rw-r--r-- | doc/api/boards.md | 2 | ||||
-rw-r--r-- | doc/api/group_boards.md | 2 | ||||
-rw-r--r-- | doc/api/issues.md | 2 | ||||
-rw-r--r-- | doc/api/merge_requests.md | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/boards.md b/doc/api/boards.md index 08ec1d832df..b848d7788cd 100644 --- a/doc/api/boards.md +++ b/doc/api/boards.md @@ -466,7 +466,7 @@ Example response: ## Delete a board list -Only for admins and project owners. Soft deletes the board list in question. +Only for admins and project owners. Deletes the board list in question. ``` DELETE /projects/:id/boards/:board_id/lists/:list_id diff --git a/doc/api/group_boards.md b/doc/api/group_boards.md index 4d10f83720b..99b522a7ae9 100644 --- a/doc/api/group_boards.md +++ b/doc/api/group_boards.md @@ -536,7 +536,7 @@ Example response: ## Delete a group issue board list -Only for admins and group owners. Soft deletes the board list in question. +Only for admins and group owners. Deletes the board list in question. ``` DELETE /groups/:id/boards/:board_id/lists/:list_id diff --git a/doc/api/issues.md b/doc/api/issues.md index 96a547551f1..ebb1ebb6815 100644 --- a/doc/api/issues.md +++ b/doc/api/issues.md @@ -790,7 +790,7 @@ the `weight` parameter: ## Delete an issue -Only for admins and project owners. Soft deletes the issue in question. +Only for admins and project owners. Deletes the issue in question. ``` DELETE /projects/:id/issues/:issue_iid diff --git a/doc/api/merge_requests.md b/doc/api/merge_requests.md index 1ade46efb1c..49ed4968b0d 100644 --- a/doc/api/merge_requests.md +++ b/doc/api/merge_requests.md @@ -1127,7 +1127,7 @@ the `approvals_before_merge` parameter: ## Delete a merge request -Only for admins and project owners. Soft deletes the merge request in question. +Only for admins and project owners. Deletes the merge request in question. ``` DELETE /projects/:id/merge_requests/:merge_request_iid |