diff options
author | Christian Simon <cs@f03.eu> | 2013-02-01 15:00:12 +0100 |
---|---|---|
committer | Christian Simon <cs@f03.eu> | 2013-02-01 15:00:12 +0100 |
commit | 149ccd5d91abf0c4b7ec610c03ad46a8ad17eec2 (patch) | |
tree | 7b32fac640f5d089c121f35b803b2a16756131ad /lib/api/entities.rb | |
parent | fc0c69287069af9a47176abb1488f653f91eebdb (diff) | |
download | gitlab-ce-149ccd5d91abf0c4b7ec610c03ad46a8ad17eec2.tar.gz |
Fix groups api: differ between users and admin
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 3bbbd831548..b78fc1b86fe 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -33,7 +33,7 @@ module Gitlab end class Group < Grape::Entity - expose :id, :name, :path, :name, :owner_id, :type + expose :id, :name, :path, :owner_id end class GroupDetail < Grape::Entity |