diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-10-30 16:16:01 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-10-30 16:16:01 +0200 |
commit | c2f0ae8a40658d02dfa128881a014fe1e907f61c (patch) | |
tree | c476c8170a97f3d65ce89a268773a2289d2152e7 /doc/api | |
parent | f99b876837e8e86dc5f4d898c16046d3183804a8 (diff) | |
parent | 822d9aa6ba150ed1983dda3cfddaaa177f6b9f97 (diff) | |
download | gitlab-ce-c2f0ae8a40658d02dfa128881a014fe1e907f61c.tar.gz |
Merge pull request #7850 from asedge/api_add_tag_message
Finish up work on 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. |