Add api for creating/listing/viewing groups
This commit is contained in:
parent
61833bcb74
commit
8edc6b6a8c
3 changed files with 62 additions and 1 deletions
|
@ -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|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue