diff options
author | Rémy Coutable <remy@rymai.me> | 2016-12-04 12:17:07 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-12-04 12:17:07 +0000 |
commit | bd67459131e22273b502eb27d97709827ff42262 (patch) | |
tree | be9f7895077833da2ee8f6446fc944d7addaecdd /doc | |
parent | 0819d093e9b4aa9d5af1f6bdde147462f0c7cb48 (diff) | |
parent | 79d99d470faf5cf088a0b76ae6bb2ec280c4c4a8 (diff) | |
download | gitlab-ce-bd67459131e22273b502eb27d97709827ff42262.tar.gz |
Merge branch 'api-expose-commiter-details' into 'master'
API: Expose committer details for a commit
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/22312
See merge request !7849
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/commits.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/api/commits.md b/doc/api/commits.md index e1ed99d98d3..0170af00e0e 100644 --- a/doc/api/commits.md +++ b/doc/api/commits.md @@ -29,6 +29,8 @@ Example response: "title": "Replace sanitize with escape once", "author_name": "Dmitriy Zaporozhets", "author_email": "dzaporozhets@sphereconsultinginc.com", + "committer_name": "Administrator", + "committer_email": "admin@example.com", "created_at": "2012-09-20T11:50:22+03:00", "message": "Replace sanitize with escape once", "allow_failure": false @@ -39,6 +41,8 @@ Example response: "title": "Sanitize for network graph", "author_name": "randx", "author_email": "dmitriy.zaporozhets@gmail.com", + "committer_name": "Dmitriy", + "committer_email": "dmitriy.zaporozhets@gmail.com", "created_at": "2012-09-20T09:06:12+03:00", "message": "Sanitize for network graph", "allow_failure": false @@ -115,6 +119,8 @@ Example response: "title": "some commit message", "author_name": "Dmitriy Zaporozhets", "author_email": "dzaporozhets@sphereconsultinginc.com", + "committer_name": "Dmitriy Zaporozhets", + "committer_email": "dzaporozhets@sphereconsultinginc.com", "created_at": "2016-09-20T09:26:24.000-07:00", "message": "some commit message", "parent_ids": [ @@ -159,6 +165,8 @@ Example response: "title": "Sanitize for network graph", "author_name": "randx", "author_email": "dmitriy.zaporozhets@gmail.com", + "committer_name": "Dmitriy", + "committer_email": "dmitriy.zaporozhets@gmail.com", "created_at": "2012-09-20T09:06:12+03:00", "message": "Sanitize for network graph", "committed_date": "2012-09-20T09:06:12+03:00", |