BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
056fa05b
Commit
056fa05b
authored
Dec 22, 2012
by
Riyad Preukschas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove path parameter from projects API
parent
1ba28aae
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
6 deletions
+1
-6
projects.md
doc/api/projects.md
+0
-4
entities.rb
lib/api/entities.rb
+1
-1
projects.rb
lib/api/projects.rb
+0
-1
No files found.
doc/api/projects.md
View file @
056fa05b
...
@@ -12,7 +12,6 @@ GET /projects
...
@@ -12,7 +12,6 @@ GET /projects
"id"
:
3
,
"id"
:
3
,
"name"
:
"rails"
,
"name"
:
"rails"
,
"description"
:
null
,
"description"
:
null
,
"path"
:
"rails"
,
"default_branch"
:
"master"
,
"default_branch"
:
"master"
,
"owner"
:
{
"owner"
:
{
"id"
:
1
,
"id"
:
1
,
...
@@ -33,7 +32,6 @@ GET /projects
...
@@ -33,7 +32,6 @@ GET /projects
"id"
:
5
,
"id"
:
5
,
"name"
:
"gitlab"
,
"name"
:
"gitlab"
,
"description"
:
null
,
"description"
:
null
,
"path"
:
"gitlab"
,
"default_branch"
:
"api"
,
"default_branch"
:
"api"
,
"owner"
:
{
"owner"
:
{
"id"
:
1
,
"id"
:
1
,
...
@@ -70,7 +68,6 @@ Parameters:
...
@@ -70,7 +68,6 @@ Parameters:
"id"
:
5
,
"id"
:
5
,
"name"
:
"gitlab"
,
"name"
:
"gitlab"
,
"description"
:
null
,
"description"
:
null
,
"path"
:
"gitlab"
,
"default_branch"
:
"api"
,
"default_branch"
:
"api"
,
"owner"
:
{
"owner"
:
{
"id"
:
1
,
"id"
:
1
,
...
@@ -100,7 +97,6 @@ POST /projects
...
@@ -100,7 +97,6 @@ POST /projects
Parameters:
Parameters:
+
`name`
(required) - new project name
+
`name`
(required) - new project name
+
`path`
(optional) - new project path, uses project name if not set
+
`description`
(optional) - short project description
+
`description`
(optional) - short project description
+
`default_branch`
(optional) - 'master' by default
+
`default_branch`
(optional) - 'master' by default
+
`issues_enabled`
(optional) - enabled by default
+
`issues_enabled`
(optional) - enabled by default
...
...
lib/api/entities.rb
View file @
056fa05b
...
@@ -18,7 +18,7 @@ module Gitlab
...
@@ -18,7 +18,7 @@ module Gitlab
end
end
class
Project
<
Grape
::
Entity
class
Project
<
Grape
::
Entity
expose
:id
,
:name
,
:description
,
:
path
,
:
default_branch
expose
:id
,
:name
,
:description
,
:default_branch
expose
:owner
,
using:
Entities
::
UserBasic
expose
:owner
,
using:
Entities
::
UserBasic
expose
:private_flag
,
as: :private
expose
:private_flag
,
as: :private
expose
:issues_enabled
,
:merge_requests_enabled
,
:wall_enabled
,
:wiki_enabled
,
:created_at
expose
:issues_enabled
,
:merge_requests_enabled
,
:wall_enabled
,
:wiki_enabled
,
:created_at
...
...
lib/api/projects.rb
View file @
056fa05b
...
@@ -27,7 +27,6 @@ module Gitlab
...
@@ -27,7 +27,6 @@ module Gitlab
#
#
# Parameters:
# Parameters:
# name (required) - name for new project
# name (required) - name for new project
# path (optional) - path for new project, uses project name if not set
# description (optional) - short project description
# description (optional) - short project description
# default_branch (optional) - 'master' by default
# default_branch (optional) - 'master' by default
# issues_enabled (optional) - enabled by default
# issues_enabled (optional) - enabled by default
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment