summaryrefslogtreecommitdiff
path: root/doc/api/project_badges.md
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-02-28 00:09:08 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-28 00:09:08 +0000
commitf54a50aa826d0eedcf2e56f51462613bc132f826 (patch)
tree7194aca23f9af822ea55966a6f477b3d8d68ee47 /doc/api/project_badges.md
parentc77fda905a8619b756163c10a75171dc9cfe7084 (diff)
downloadgitlab-ce-f54a50aa826d0eedcf2e56f51462613bc132f826.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/project_badges.md')
-rw-r--r--doc/api/project_badges.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/api/project_badges.md b/doc/api/project_badges.md
index 77c5d6cf37e..2e335d80947 100644
--- a/doc/api/project_badges.md
+++ b/doc/api/project_badges.md
@@ -16,7 +16,7 @@ Badges support placeholders that will be replaced in real time in both the link
Gets a list of a project's badges and its group badges.
-```
+```plaintext
GET /projects/:id/badges
```
@@ -58,7 +58,7 @@ Example response:
Gets a badge of a project.
-```
+```plaintext
GET /projects/:id/badges/:badge_id
```
@@ -88,7 +88,7 @@ Example response:
Adds a badge to a project.
-```
+```plaintext
POST /projects/:id/badges
```
@@ -119,7 +119,7 @@ Example response:
Updates a badge of a project.
-```
+```plaintext
PUT /projects/:id/badges/:badge_id
```
@@ -151,7 +151,7 @@ Example response:
Removes a badge from a project. Only project's badges will be removed by using this endpoint.
-```
+```plaintext
DELETE /projects/:id/badges/:badge_id
```
@@ -168,7 +168,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 /projects/:id/badges/render
```