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 /lib/api | |
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 'lib/api')
-rw-r--r-- | lib/api/entities.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index d5dfb8d00be..899d68bc6c7 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -174,6 +174,7 @@ module API class RepoCommit < Grape::Entity expose :id, :short_id, :title, :author_name, :author_email, :created_at + expose :committer_name, :committer_email expose :safe_message, as: :message end |