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>2021-09-08 12:09:10 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-09-08 12:09:10 +0300
commit5cd68a92fa0397121f25357ffae4a4bb6393ae72 (patch)
tree9a3a6e7bb60419a36dd71096974a4b4177a9ed05 /doc/development/internal_api.md
parent1758f49bb51884245d53fc6675f180cb522a4623 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/internal_api.md')
-rw-r--r--doc/development/internal_api.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/internal_api.md b/doc/development/internal_api.md
index e3fb93c6dbf..564c1928138 100644
--- a/doc/development/internal_api.md
+++ b/doc/development/internal_api.md
@@ -725,7 +725,7 @@ Example request:
```shell
curl --request POST \
- --url http://localhost:3000/api/v4/namespaces/123/minutes \
+ --url "http://localhost:3000/api/v4/namespaces/123/minutes" \
--header 'Content-Type: application/json' \
--header 'PRIVATE-TOKEN: <admin access token>' \
--data '{
@@ -769,7 +769,7 @@ Example request:
```shell
curl --request PATCH \
- --url http://localhost:3000/api/v4/namespaces/123/minutes/move/321 \
+ --url "http://localhost:3000/api/v4/namespaces/123/minutes/move/321" \
--header 'PRIVATE-TOKEN: <admin access token>'
```