diff options
author | Daniel Serodio <Daniel.Serodio@walmart.com> | 2014-12-16 20:03:28 -0200 |
---|---|---|
committer | Daniel Serodio <Daniel.Serodio@walmart.com> | 2015-01-16 16:52:48 -0200 |
commit | 6ac8bb0f7ccd7b1f10909aea62b1d8493fc0574a (patch) | |
tree | d723b59d356859b9287ba2ecb0282aa45a2724b9 /lib/api/entities.rb | |
parent | ada6c6080b2fa0d63003f8b29b5c32195254906d (diff) | |
download | gitlab-ce-6ac8bb0f7ccd7b1f10909aea62b1d8493fc0574a.tar.gz |
Add description attribute to group API (GET and POST)
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r-- | lib/api/entities.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index 2fea151aeb3..ac166ed4fba 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -65,7 +65,7 @@ module API end class Group < Grape::Entity - expose :id, :name, :path, :owner_id + expose :id, :name, :path, :owner_id, :description end class GroupDetail < Group |