Add api for creating/listing/viewing groups

This commit is contained in:
Christian Simon 2013-01-08 22:05:00 +01:00
parent 61833bcb74
commit 8edc6b6a8c
3 changed files with 62 additions and 1 deletions

View file

@ -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|