diff options
author | Christian Simon <cs@f03.eu> | 2013-01-08 22:05:00 +0100 |
---|---|---|
committer | Christian Simon <cs@f03.eu> | 2013-02-01 12:11:19 +0100 |
commit | 8edc6b6a8c240322499356df96e1199bb6bbc872 (patch) | |
tree | 285b1f3f13650d1027e4903dd8d82904ea5b9802 /lib/api/entities.rb | |
parent | 61833bcb7457d98800c0581b6d09406929057a54 (diff) | |
download | gitlab-ce-8edc6b6a8c240322499356df96e1199bb6bbc872.tar.gz |
Add api for creating/listing/viewing groups
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r-- | lib/api/entities.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index 5cbb1118a89..3bbbd831548 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -32,6 +32,16 @@ module Gitlab end end + class Group < Grape::Entity + expose :id, :name, :path, :name, :owner_id, :type + end + + class GroupDetail < Grape::Entity + expose :id, :name, :path, :name, :owner_id, :type + expose :projects, using: Entities::Project + end + + class RepoObject < Grape::Entity expose :name, :commit expose :protected do |repo, options| |