diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2016-11-30 18:02:58 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2016-12-01 11:10:46 +0100 |
commit | 79d99d470faf5cf088a0b76ae6bb2ec280c4c4a8 (patch) | |
tree | f71b47e33dd38cad6f536101ca522a2946a87aec /lib/api | |
parent | c2be86b50f50d7bd5ec36b2893aa20d85dc3d21c (diff) | |
download | gitlab-ce-79d99d470faf5cf088a0b76ae6bb2ec280c4c4a8.tar.gz |
API: Expose committer details for a commitapi-expose-commiter-details
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 |