diff options
author | Douwe Maan <douwe@gitlab.com> | 2016-12-08 01:02:17 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2016-12-08 01:02:17 +0000 |
commit | 50a784482e997cc039015e24b37d3f8a01a9cd3e (patch) | |
tree | 0715fd2777fb06d3274de86cfdda45f8029d3578 /doc/api | |
parent | cf2206eb2b16d12a1d9c18d47fc2105fbb650d33 (diff) | |
parent | 9e307b93b7c57a14de6e425566f88511024859a3 (diff) | |
download | gitlab-ce-50a784482e997cc039015e24b37d3f8a01a9cd3e.tar.gz |
Merge branch 'public-tags-api' into 'master'
19703-direct-link-pipelines-into-builds
Allow public access to some Tag API endpoints
Continuation of #4269.
See merge request !7896
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/tags.md | 7 |
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 |