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-02-28 03:09:08 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-28 03:09:08 +0300
commitf54a50aa826d0eedcf2e56f51462613bc132f826 (patch)
tree7194aca23f9af822ea55966a6f477b3d8d68ee47 /doc/api/epic_links.md
parentc77fda905a8619b756163c10a75171dc9cfe7084 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/epic_links.md')
-rw-r--r--doc/api/epic_links.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/epic_links.md b/doc/api/epic_links.md
index 0e2fb2653c4..5df91e106eb 100644
--- a/doc/api/epic_links.md
+++ b/doc/api/epic_links.md
@@ -15,7 +15,7 @@ Epics are available only in the [Ultimate/Gold tier](https://about.gitlab.com/pr
Gets all child epics of an epic.
-```
+```plaintext
GET /groups/:id/epics/:epic_iid/epics
```
@@ -69,7 +69,7 @@ Example response:
Creates an association between two epics, designating one as the parent epic and the other as the child epic. A parent epic can have multiple child epics. If the new child epic already belonged to another epic, it is unassigned from that previous parent.
-```
+```plaintext
POST /groups/:id/epics/:epic_iid/epics
```
@@ -122,7 +122,7 @@ Example response:
Creates a a new epic and associates it with provided parent epic. The response is LinkedEpic object.
-```
+```plaintext
POST /groups/:id/epics/:epic_iid/epics
```
@@ -155,7 +155,7 @@ Example response:
## Re-order a child epic
-```
+```plaintext
PUT /groups/:id/epics/:epic_iid/epics/:child_epic_id
```
@@ -212,7 +212,7 @@ Example response:
Unassigns a child epic from a parent epic.
-```
+```plaintext
DELETE /groups/:id/epics/:epic_iid/epics/:child_epic_id
```