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:
authorRémy Coutable <remy@rymai.me>2016-12-02 16:33:29 +0300
committerRémy Coutable <remy@rymai.me>2016-12-07 13:39:11 +0300
commit9e307b93b7c57a14de6e425566f88511024859a3 (patch)
treed1b813c2f75bd2a37b27a78083b383fc967f2b6a /doc/api/tags.md
parent90c0f610e29976608dbfeeb63bc4763982c5dbc3 (diff)
Allow public access to some Tag API endpoints
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'doc/api/tags.md')
-rw-r--r--doc/api/tags.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/api/tags.md b/doc/api/tags.md
index 14573d48fe4..7f78ffc2390 100644
--- a/doc/api/tags.md
+++ b/doc/api/tags.md
@@ -2,7 +2,9 @@
## List project repository tags
-Get a list of repository tags from a project, sorted by name in reverse alphabetical order.
+Get a list of repository tags from a project, sorted by name in reverse
+alphabetical order. This endpoint can be accessed without authentication if the
+repository is publicly accessible.
```
GET /projects/:id/repository/tags
@@ -40,7 +42,8 @@ Parameters:
## Get a single repository tag
-Get a specific repository tag determined by its name.
+Get a specific repository tag determined by its name. This endpoint can be
+accessed without authentication if the repository is publicly accessible.
```
GET /projects/:id/repository/tags/:tag_name