diff options
author | mabdullah-cinglevue <mustafa.motiwala@cinglevue.com> | 2014-04-16 10:14:05 +0800 |
---|---|---|
committer | Mustafa <mustafa.motiwala@cinglevue.com> | 2014-08-01 18:29:23 +0800 |
commit | 4a36d669b5cb9c4727e82e68dd3a573f5cb1f53f (patch) | |
tree | 03db47f13ca55bdb8de438a46516bbc898979487 /lib | |
parent | ec18f0bae557c6368c4ac211041a81bfe05492e8 (diff) | |
download | gitlab-ce-4a36d669b5cb9c4727e82e68dd3a573f5cb1f53f.tar.gz |
# This is a combination of 2 commits.
# The first commit's message is:
Patched `MergeRequest` to return more data.
Patched `MergeRequest` to return the `description` & `milestone`
Conflicts:
lib/api/entities.rb
# This is the 2nd commit message:
Update merge_requests.md
Update documentation for merge request endpoint adding support for description.
Diffstat (limited to 'lib')
-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 42715d2be3b..a206b7731e3 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -136,6 +136,7 @@ module API expose :author, :assignee, using: Entities::UserBasic expose :source_project_id, :target_project_id expose :label_names, as: :labels + expose :description, :milestone_id end class SSHKey < Grape::Entity |