diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2015-11-21 18:08:45 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2015-11-21 18:08:45 +0100 |
commit | faef95af1a07bdcfd02eead36d144f332b428f1f (patch) | |
tree | 7f34f351e7681036bbafda1980e1d403316ee7d5 /doc/api | |
parent | 2cba93a0d2d12ee36bf98569e5c6c14ac7ea40e0 (diff) | |
download | gitlab-ce-faef95af1a07bdcfd02eead36d144f332b428f1f.tar.gz |
API: Return 404 if the tag for a release does not exist
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/tags.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/api/tags.md b/doc/api/tags.md index cf95f87dc3e..ca9e2cef651 100644 --- a/doc/api/tags.md +++ b/doc/api/tags.md @@ -86,7 +86,8 @@ It returns 200 if the operation succeed. In case of an error, ## New release -Add release notes to the existing git tag +Add release notes to the existing git tag. It returns 200 if the release is +created successfully. If the tag does not exist, 404 is returned. ``` PUT /projects/:id/repository/tags/:tag_name/release |