diff options
author | Sean Edge <asedge@gmail.com> | 2014-09-24 22:30:06 -0400 |
---|---|---|
committer | Sean Edge <asedge@gmail.com> | 2014-10-30 09:48:23 -0400 |
commit | 822d9aa6ba150ed1983dda3cfddaaa177f6b9f97 (patch) | |
tree | c476c8170a97f3d65ce89a268773a2289d2152e7 /doc/api | |
parent | f99b876837e8e86dc5f4d898c16046d3183804a8 (diff) | |
download | gitlab-ce-822d9aa6ba150ed1983dda3cfddaaa177f6b9f97.tar.gz |
Create RepoTag Grape entity and present it when doing stuff with tags via API. Update API doc for repositories. Add tag message to tag list page in UI. Update Changelog. Update spec to set .gitconfig identity, required for annotated tags.
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/repositories.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/api/repositories.md b/doc/api/repositories.md index a412f60c0d9..8acf85d21c8 100644 --- a/doc/api/repositories.md +++ b/doc/api/repositories.md @@ -56,6 +56,7 @@ Parameters: [ { "name": "v1.0.0", + "message": "Release 1.0.0", "commit": { "id": "2695effb5807a22ff3d138d593fd856244e155e7", "parents": [], @@ -67,10 +68,11 @@ Parameters: "committed_date": "2012-05-28T04:42:42-07:00", "committer_email": "jack@example.com" }, - "protected": false } ] ``` +The message will be `nil` when creating a lightweight tag otherwise +it will contain the annotation. It returns 200 if the operation succeed. In case of an error, 405 with an explaining error message is returned. |