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-11 15:08:50 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-09-11 15:08:50 +0300
commit0eaa82ad61d2fda42b2dd5cf58cc08654b2d69ef (patch)
tree9ab5c60316dd689e0ac53830fd3910817006c9b3 /doc/api/epic_links.md
parent6b5f961bef87c70effe57b14d41f9ed882b5d296 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/epic_links.md')
-rw-r--r--doc/api/epic_links.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/api/epic_links.md b/doc/api/epic_links.md
index 8a9abf8f08c..19c8dc78aed 100644
--- a/doc/api/epic_links.md
+++ b/doc/api/epic_links.md
@@ -131,6 +131,7 @@ POST /groups/:id/epics/:epic_iid/epics
| `id` | integer/string | yes | The ID or [URL-encoded path of the group](README.md#namespaced-path-encoding) owned by the authenticated user |
| `epic_iid` | integer | yes | The internal ID of the (future parent) epic. |
| `title` | string | yes | The title of a newly created epic. |
+| `confidential` | boolean | no | Whether the epic should be confidential. Will be ignored if `confidential_epics` feature flag is disabled. Defaults to the confidentiality state of the parent epic. |
```shell
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/groups/1/epics/5/epics?title=Newpic"