diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-27 09:09:01 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-27 09:09:01 +0000 |
commit | c72e5ebe9938d315ec598197873e71a80168d40a (patch) | |
tree | 439bf5c40aaf774e5a301825af517cb52726f450 /doc/api/group_badges.md | |
parent | ffc43b862df32a590eae874bcbb11109b46dc8be (diff) | |
download | gitlab-ce-c72e5ebe9938d315ec598197873e71a80168d40a.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/group_badges.md')
-rw-r--r-- | doc/api/group_badges.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/api/group_badges.md b/doc/api/group_badges.md index 4fa2fa2b577..0d1a333e318 100644 --- a/doc/api/group_badges.md +++ b/doc/api/group_badges.md @@ -19,7 +19,7 @@ from the first group's project by creation date. If the group hasn't got any pro Gets a list of a group's badges. -``` +```plaintext GET /groups/:id/badges ``` @@ -52,7 +52,7 @@ Example response: Gets a badge of a group. -``` +```plaintext GET /groups/:id/badges/:badge_id ``` @@ -82,7 +82,7 @@ Example response: Adds a badge to a group. -``` +```plaintext POST /groups/:id/badges ``` @@ -113,7 +113,7 @@ Example response: Updates a badge of a group. -``` +```plaintext PUT /groups/:id/badges/:badge_id ``` @@ -145,7 +145,7 @@ Example response: Removes a badge from a group. -``` +```plaintext DELETE /groups/:id/badges/:badge_id ``` @@ -162,7 +162,7 @@ curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" https://gitl Returns how the `link_url` and `image_url` final URLs would be after resolving the placeholder interpolation. -``` +```plaintext GET /groups/:id/badges/render ``` |