Remove path parameter from projects API
This commit is contained in:
parent
1ba28aaef8
commit
056fa05b86
3 changed files with 1 additions and 6 deletions
|
@ -18,7 +18,7 @@ module Gitlab
|
|||
end
|
||||
|
||||
class Project < Grape::Entity
|
||||
expose :id, :name, :description, :path, :default_branch
|
||||
expose :id, :name, :description, :default_branch
|
||||
expose :owner, using: Entities::UserBasic
|
||||
expose :private_flag, as: :private
|
||||
expose :issues_enabled, :merge_requests_enabled, :wall_enabled, :wiki_enabled, :created_at
|
||||
|
|
|
@ -27,7 +27,6 @@ module Gitlab
|
|||
#
|
||||
# Parameters:
|
||||
# name (required) - name for new project
|
||||
# path (optional) - path for new project, uses project name if not set
|
||||
# description (optional) - short project description
|
||||
# default_branch (optional) - 'master' by default
|
||||
# issues_enabled (optional) - enabled by default
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue