Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
8f01190e
Commit
8f01190e
authored
Dec 21, 2012
by
Riyad Preukschas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove all references tp the project code parameter from the API
parent
931ec399
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
86 additions
and
86 deletions
+86
-86
doc/api/issues.md
doc/api/issues.md
+4
-4
doc/api/merge_requests.md
doc/api/merge_requests.md
+5
-5
doc/api/milestones.md
doc/api/milestones.md
+4
-4
doc/api/notes.md
doc/api/notes.md
+9
-9
doc/api/projects.md
doc/api/projects.md
+11
-11
doc/api/repositories.md
doc/api/repositories.md
+5
-5
doc/api/snippets.md
doc/api/snippets.md
+6
-6
lib/api/issues.rb
lib/api/issues.rb
+5
-5
lib/api/merge_requests.rb
lib/api/merge_requests.rb
+5
-5
lib/api/milestones.rb
lib/api/milestones.rb
+4
-4
lib/api/notes.rb
lib/api/notes.rb
+6
-6
lib/api/projects.rb
lib/api/projects.rb
+22
-22
No files found.
doc/api/issues.md
View file @
8f01190e
...
@@ -78,7 +78,7 @@ GET /projects/:id/issues
...
@@ -78,7 +78,7 @@ GET /projects/:id/issues
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
## Single issue
## Single issue
...
@@ -90,7 +90,7 @@ GET /projects/:id/issues/:issue_id
...
@@ -90,7 +90,7 @@ GET /projects/:id/issues/:issue_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`issue_id`
(required) - The ID of a project issue
+
`issue_id`
(required) - The ID of a project issue
```
json
```
json
...
@@ -143,7 +143,7 @@ POST /projects/:id/issues
...
@@ -143,7 +143,7 @@ POST /projects/:id/issues
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`title`
(required) - The title of an issue
+
`title`
(required) - The title of an issue
+
`description`
(optional) - The description of an issue
+
`description`
(optional) - The description of an issue
+
`assignee_id`
(optional) - The ID of a user to assign issue
+
`assignee_id`
(optional) - The ID of a user to assign issue
...
@@ -162,7 +162,7 @@ PUT /projects/:id/issues/:issue_id
...
@@ -162,7 +162,7 @@ PUT /projects/:id/issues/:issue_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`issue_id`
(required) - The ID of a project's issue
+
`issue_id`
(required) - The ID of a project's issue
+
`title`
(optional) - The title of an issue
+
`title`
(optional) - The title of an issue
+
`description`
(optional) - The description of an issue
+
`description`
(optional) - The description of an issue
...
...
doc/api/merge_requests.md
View file @
8f01190e
...
@@ -8,7 +8,7 @@ GET /projects/:id/merge_requests
...
@@ -8,7 +8,7 @@ GET /projects/:id/merge_requests
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
```
json
```
json
[
[
...
@@ -50,7 +50,7 @@ GET /projects/:id/merge_request/:merge_request_id
...
@@ -50,7 +50,7 @@ GET /projects/:id/merge_request/:merge_request_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`merge_request_id`
(required) - The ID of MR
+
`merge_request_id`
(required) - The ID of MR
```
json
```
json
...
@@ -92,7 +92,7 @@ POST /projects/:id/merge_requests
...
@@ -92,7 +92,7 @@ POST /projects/:id/merge_requests
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`source_branch`
(required) - The source branch
+
`source_branch`
(required) - The source branch
+
`target_branch`
(required) - The target branch
+
`target_branch`
(required) - The target branch
+
`assignee_id`
- Assignee user ID
+
`assignee_id`
- Assignee user ID
...
@@ -136,7 +136,7 @@ PUT /projects/:id/merge_request/:merge_request_id
...
@@ -136,7 +136,7 @@ PUT /projects/:id/merge_request/:merge_request_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`merge_request_id`
(required) - ID of MR
+
`merge_request_id`
(required) - ID of MR
+
`source_branch`
- The source branch
+
`source_branch`
- The source branch
+
`target_branch`
- The target branch
+
`target_branch`
- The target branch
...
@@ -182,7 +182,7 @@ POST /projects/:id/merge_request/:merge_request_id/comments
...
@@ -182,7 +182,7 @@ POST /projects/:id/merge_request/:merge_request_id/comments
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`merge_request_id`
(required) - ID of MR
+
`merge_request_id`
(required) - ID of MR
+
`note`
(required) - Text of comment
+
`note`
(required) - Text of comment
...
...
doc/api/milestones.md
View file @
8f01190e
...
@@ -8,7 +8,7 @@ GET /projects/:id/milestones
...
@@ -8,7 +8,7 @@ GET /projects/:id/milestones
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
## Single milestone
## Single milestone
...
@@ -20,7 +20,7 @@ GET /projects/:id/milestones/:milestone_id
...
@@ -20,7 +20,7 @@ GET /projects/:id/milestones/:milestone_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`milestone_id`
(required) - The ID of a project milestone
+
`milestone_id`
(required) - The ID of a project milestone
## New milestone
## New milestone
...
@@ -33,7 +33,7 @@ POST /projects/:id/milestones
...
@@ -33,7 +33,7 @@ POST /projects/:id/milestones
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`milestone_id`
(required) - The ID of a project milestone
+
`milestone_id`
(required) - The ID of a project milestone
+
`title`
(required) - The title of an milestone
+
`title`
(required) - The title of an milestone
+
`description`
(optional) - The description of the milestone
+
`description`
(optional) - The description of the milestone
...
@@ -49,7 +49,7 @@ PUT /projects/:id/milestones/:milestone_id
...
@@ -49,7 +49,7 @@ PUT /projects/:id/milestones/:milestone_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`milestone_id`
(required) - The ID of a project milestone
+
`milestone_id`
(required) - The ID of a project milestone
+
`title`
(optional) - The title of a milestone
+
`title`
(optional) - The title of a milestone
+
`description`
(optional) - The description of a milestone
+
`description`
(optional) - The description of a milestone
...
...
doc/api/notes.md
View file @
8f01190e
...
@@ -28,7 +28,7 @@ GET /projects/:id/notes
...
@@ -28,7 +28,7 @@ GET /projects/:id/notes
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
### List issue notes
### List issue notes
...
@@ -40,7 +40,7 @@ GET /projects/:id/issues/:issue_id/notes
...
@@ -40,7 +40,7 @@ GET /projects/:id/issues/:issue_id/notes
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`issue_id`
(required) - The ID of an issue
+
`issue_id`
(required) - The ID of an issue
### List snippet notes
### List snippet notes
...
@@ -53,7 +53,7 @@ GET /projects/:id/snippets/:snippet_id/notes
...
@@ -53,7 +53,7 @@ GET /projects/:id/snippets/:snippet_id/notes
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`snippet_id`
(required) - The ID of a snippet
+
`snippet_id`
(required) - The ID of a snippet
## Single note
## Single note
...
@@ -68,7 +68,7 @@ GET /projects/:id/notes/:note_id
...
@@ -68,7 +68,7 @@ GET /projects/:id/notes/:note_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`note_id`
(required) - The ID of a wall note
+
`note_id`
(required) - The ID of a wall note
### Single issue note
### Single issue note
...
@@ -81,7 +81,7 @@ GET /projects/:id/issues/:issue_id/:notes/:note_id
...
@@ -81,7 +81,7 @@ GET /projects/:id/issues/:issue_id/:notes/:note_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`issue_id`
(required) - The ID of a project issue
+
`issue_id`
(required) - The ID of a project issue
+
`note_id`
(required) - The ID of an issue note
+
`note_id`
(required) - The ID of an issue note
...
@@ -95,7 +95,7 @@ GET /projects/:id/issues/:snippet_id/:notes/:note_id
...
@@ -95,7 +95,7 @@ GET /projects/:id/issues/:snippet_id/:notes/:note_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`snippet_id`
(required) - The ID of a project snippet
+
`snippet_id`
(required) - The ID of a project snippet
+
`note_id`
(required) - The ID of an snippet note
+
`note_id`
(required) - The ID of an snippet note
...
@@ -111,7 +111,7 @@ POST /projects/:id/notes
...
@@ -111,7 +111,7 @@ POST /projects/:id/notes
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`body`
(required) - The content of a note
+
`body`
(required) - The content of a note
Will return created note with status
`201 Created`
on success, or
`404 Not found`
on fail.
Will return created note with status
`201 Created`
on success, or
`404 Not found`
on fail.
...
@@ -127,7 +127,7 @@ POST /projects/:id/issues/:issue_id/notes
...
@@ -127,7 +127,7 @@ POST /projects/:id/issues/:issue_id/notes
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`issue_id`
(required) - The ID of an issue
+
`issue_id`
(required) - The ID of an issue
+
`body`
(required) - The content of a note
+
`body`
(required) - The content of a note
...
@@ -143,7 +143,7 @@ POST /projects/:id/snippets/:snippet_id/notes
...
@@ -143,7 +143,7 @@ POST /projects/:id/snippets/:snippet_id/notes
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`snippet_id`
(required) - The ID of an snippet
+
`snippet_id`
(required) - The ID of an snippet
+
`body`
(required) - The content of a note
+
`body`
(required) - The content of a note
...
...
doc/api/projects.md
View file @
8f01190e
...
@@ -63,7 +63,7 @@ GET /projects/:id
...
@@ -63,7 +63,7 @@ GET /projects/:id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
```
json
```
json
{
{
...
@@ -121,7 +121,7 @@ GET /projects/:id/members
...
@@ -121,7 +121,7 @@ GET /projects/:id/members
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`query`
- Query string
+
`query`
- Query string
## Get project team member
## Get project team member
...
@@ -134,7 +134,7 @@ GET /projects/:id/members/:user_id
...
@@ -134,7 +134,7 @@ GET /projects/:id/members/:user_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`user_id`
(required) - The ID of a user
+
`user_id`
(required) - The ID of a user
```
json
```
json
...
@@ -160,7 +160,7 @@ POST /projects/:id/members
...
@@ -160,7 +160,7 @@ POST /projects/:id/members
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`user_id`
(required) - The ID of a user to add
+
`user_id`
(required) - The ID of a user to add
+
`access_level`
(required) - Project access level
+
`access_level`
(required) - Project access level
...
@@ -176,7 +176,7 @@ PUT /projects/:id/members/:user_id
...
@@ -176,7 +176,7 @@ PUT /projects/:id/members/:user_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`user_id`
(required) - The ID of a team member
+
`user_id`
(required) - The ID of a team member
+
`access_level`
(required) - Project access level
+
`access_level`
(required) - Project access level
...
@@ -192,7 +192,7 @@ DELETE /projects/:id/members/:user_id
...
@@ -192,7 +192,7 @@ DELETE /projects/:id/members/:user_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`user_id`
(required) - The ID of a team member
+
`user_id`
(required) - The ID of a team member
Status code
`200`
will be returned on success.
Status code
`200`
will be returned on success.
...
@@ -207,7 +207,7 @@ GET /projects/:id/hooks
...
@@ -207,7 +207,7 @@ GET /projects/:id/hooks
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
Will return hooks with status
`200 OK`
on success, or
`404 Not found`
on fail.
Will return hooks with status
`200 OK`
on success, or
`404 Not found`
on fail.
...
@@ -221,7 +221,7 @@ GET /projects/:id/hooks/:hook_id
...
@@ -221,7 +221,7 @@ GET /projects/:id/hooks/:hook_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`hook_id`
(required) - The ID of a project hook
+
`hook_id`
(required) - The ID of a project hook
Will return hook with status
`200 OK`
on success, or
`404 Not found`
on fail.
Will return hook with status
`200 OK`
on success, or
`404 Not found`
on fail.
...
@@ -236,7 +236,7 @@ POST /projects/:id/hooks
...
@@ -236,7 +236,7 @@ POST /projects/:id/hooks
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`url`
(required) - The hook URL
+
`url`
(required) - The hook URL
Will return status
`201 Created`
on success, or
`404 Not found`
on fail.
Will return status
`201 Created`
on success, or
`404 Not found`
on fail.
...
@@ -251,7 +251,7 @@ PUT /projects/:id/hooks/:hook_id
...
@@ -251,7 +251,7 @@ PUT /projects/:id/hooks/:hook_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`hook_id`
(required) - The ID of a project hook
+
`hook_id`
(required) - The ID of a project hook
+
`url`
(required) - The hook URL
+
`url`
(required) - The hook URL
...
@@ -268,7 +268,7 @@ DELETE /projects/:id/hooks
...
@@ -268,7 +268,7 @@ DELETE /projects/:id/hooks
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`hook_id`
(required) - The ID of hook to delete
+
`hook_id`
(required) - The ID of hook to delete
Will return status
`200 OK`
on success, or
`404 Not found`
on fail.
Will return status
`200 OK`
on success, or
`404 Not found`
on fail.
doc/api/repositories.md
View file @
8f01190e
...
@@ -8,7 +8,7 @@ GET /projects/:id/repository/branches
...
@@ -8,7 +8,7 @@ GET /projects/:id/repository/branches
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
```
json
```
json
[
[
...
@@ -48,7 +48,7 @@ GET /projects/:id/repository/branches/:branch
...
@@ -48,7 +48,7 @@ GET /projects/:id/repository/branches/:branch
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`branch`
(required) - The name of the branch
+
`branch`
(required) - The name of the branch
```
json
```
json
...
@@ -87,7 +87,7 @@ GET /projects/:id/repository/tags
...
@@ -87,7 +87,7 @@ GET /projects/:id/repository/tags
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
```
json
```
json
[
[
...
@@ -125,7 +125,7 @@ GET /projects/:id/repository/commits
...
@@ -125,7 +125,7 @@ GET /projects/:id/repository/commits
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`ref_name`
(optional) - The name of a repository branch or tag
+
`ref_name`
(optional) - The name of a repository branch or tag
```
json
```
json
...
@@ -159,7 +159,7 @@ GET /projects/:id/repository/commits/:sha/blob
...
@@ -159,7 +159,7 @@ GET /projects/:id/repository/commits/:sha/blob
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`sha`
(required) - The commit or branch name
+
`sha`
(required) - The commit or branch name
+
`filepath`
(required) - The path the file
+
`filepath`
(required) - The path the file
...
...
doc/api/snippets.md
View file @
8f01190e
...
@@ -8,7 +8,7 @@ GET /projects/:id/snippets
...
@@ -8,7 +8,7 @@ GET /projects/:id/snippets
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
## Single snippet
## Single snippet
...
@@ -20,7 +20,7 @@ GET /projects/:id/snippets/:snippet_id
...
@@ -20,7 +20,7 @@ GET /projects/:id/snippets/:snippet_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`snippet_id`
(required) - The ID of a project's snippet
+
`snippet_id`
(required) - The ID of a project's snippet
```
json
```
json
...
@@ -52,7 +52,7 @@ GET /projects/:id/snippets/:snippet_id/raw
...
@@ -52,7 +52,7 @@ GET /projects/:id/snippets/:snippet_id/raw
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`snippet_id`
(required) - The ID of a project's snippet
+
`snippet_id`
(required) - The ID of a project's snippet
## New snippet
## New snippet
...
@@ -65,7 +65,7 @@ POST /projects/:id/snippets
...
@@ -65,7 +65,7 @@ POST /projects/:id/snippets
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`title`
(required) - The title of a snippet
+
`title`
(required) - The title of a snippet
+
`file_name`
(required) - The name of a snippet file
+
`file_name`
(required) - The name of a snippet file
+
`lifetime`
(optional) - The expiration date of a snippet
+
`lifetime`
(optional) - The expiration date of a snippet
...
@@ -83,7 +83,7 @@ PUT /projects/:id/snippets/:snippet_id
...
@@ -83,7 +83,7 @@ PUT /projects/:id/snippets/:snippet_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`snippet_id`
(required) - The ID of a project's snippet
+
`snippet_id`
(required) - The ID of a project's snippet
+
`title`
(optional) - The title of a snippet
+
`title`
(optional) - The title of a snippet
+
`file_name`
(optional) - The name of a snippet file
+
`file_name`
(optional) - The name of a snippet file
...
@@ -102,7 +102,7 @@ DELETE /projects/:id/snippets/:snippet_id
...
@@ -102,7 +102,7 @@ DELETE /projects/:id/snippets/:snippet_id
Parameters:
Parameters:
+
`id`
(required) - The ID o
r code name o
f a project
+
`id`
(required) - The ID of a project
+
`snippet_id`
(required) - The ID of a project's snippet
+
`snippet_id`
(required) - The ID of a project's snippet
Status code
`200`
will be returned on success.
Status code
`200`
will be returned on success.
...
...
lib/api/issues.rb
View file @
8f01190e
...
@@ -17,7 +17,7 @@ module Gitlab
...
@@ -17,7 +17,7 @@ module Gitlab
# Get a list of project issues
# Get a list of project issues
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# Example Request:
# Example Request:
# GET /projects/:id/issues
# GET /projects/:id/issues
get
":id/issues"
do
get
":id/issues"
do
...
@@ -27,7 +27,7 @@ module Gitlab
...
@@ -27,7 +27,7 @@ module Gitlab
# Get a single project issue
# Get a single project issue
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# issue_id (required) - The ID of a project issue
# issue_id (required) - The ID of a project issue
# Example Request:
# Example Request:
# GET /projects/:id/issues/:issue_id
# GET /projects/:id/issues/:issue_id
...
@@ -39,7 +39,7 @@ module Gitlab
...
@@ -39,7 +39,7 @@ module Gitlab
# Create a new project issue
# Create a new project issue
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# title (required) - The title of an issue
# title (required) - The title of an issue
# description (optional) - The description of an issue
# description (optional) - The description of an issue
# assignee_id (optional) - The ID of a user to assign issue
# assignee_id (optional) - The ID of a user to assign issue
...
@@ -62,7 +62,7 @@ module Gitlab
...
@@ -62,7 +62,7 @@ module Gitlab
# Update an existing issue
# Update an existing issue
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# issue_id (required) - The ID of a project issue
# issue_id (required) - The ID of a project issue
# title (optional) - The title of an issue
# title (optional) - The title of an issue
# description (optional) - The description of an issue
# description (optional) - The description of an issue
...
@@ -88,7 +88,7 @@ module Gitlab
...
@@ -88,7 +88,7 @@ module Gitlab
# Delete a project issue (deprecated)
# Delete a project issue (deprecated)
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# issue_id (required) - The ID of a project issue
# issue_id (required) - The ID of a project issue
# Example Request:
# Example Request:
# DELETE /projects/:id/issues/:issue_id
# DELETE /projects/:id/issues/:issue_id
...
...
lib/api/merge_requests.rb
View file @
8f01190e
...
@@ -8,7 +8,7 @@ module Gitlab
...
@@ -8,7 +8,7 @@ module Gitlab
# List merge requests
# List merge requests
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
#
#
# Example:
# Example:
# GET /projects/:id/merge_requests
# GET /projects/:id/merge_requests
...
@@ -22,7 +22,7 @@ module Gitlab
...
@@ -22,7 +22,7 @@ module Gitlab
# Show MR
# Show MR
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# merge_request_id (required) - The ID of MR
# merge_request_id (required) - The ID of MR
#
#
# Example:
# Example:
...
@@ -40,7 +40,7 @@ module Gitlab
...
@@ -40,7 +40,7 @@ module Gitlab
#
#
# Parameters:
# Parameters:
#
#
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# source_branch (required) - The source branch
# source_branch (required) - The source branch
# target_branch (required) - The target branch
# target_branch (required) - The target branch
# assignee_id - Assignee user ID
# assignee_id - Assignee user ID
...
@@ -67,7 +67,7 @@ module Gitlab
...
@@ -67,7 +67,7 @@ module Gitlab
# Update MR
# Update MR
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# merge_request_id (required) - ID of MR
# merge_request_id (required) - ID of MR
# source_branch - The source branch
# source_branch - The source branch
# target_branch - The target branch
# target_branch - The target branch
...
@@ -95,7 +95,7 @@ module Gitlab
...
@@ -95,7 +95,7 @@ module Gitlab
# Post comment to merge request
# Post comment to merge request
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# merge_request_id (required) - ID of MR
# merge_request_id (required) - ID of MR
# note (required) - Text of comment
# note (required) - Text of comment
# Examples:
# Examples:
...
...
lib/api/milestones.rb
View file @
8f01190e
...
@@ -7,7 +7,7 @@ module Gitlab
...
@@ -7,7 +7,7 @@ module Gitlab
# Get a list of project milestones
# Get a list of project milestones
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# Example Request:
# Example Request:
# GET /projects/:id/milestones
# GET /projects/:id/milestones
get
":id/milestones"
do
get
":id/milestones"
do
...
@@ -19,7 +19,7 @@ module Gitlab
...
@@ -19,7 +19,7 @@ module Gitlab
# Get a single project milestone
# Get a single project milestone
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# milestone_id (required) - The ID of a project milestone
# milestone_id (required) - The ID of a project milestone
# Example Request:
# Example Request:
# GET /projects/:id/milestones/:milestone_id
# GET /projects/:id/milestones/:milestone_id
...
@@ -33,7 +33,7 @@ module Gitlab
...
@@ -33,7 +33,7 @@ module Gitlab
# Create a new project milestone
# Create a new project milestone
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f the project
# id (required) - The ID of the project
# title (required) - The title of the milestone
# title (required) - The title of the milestone
# description (optional) - The description of the milestone
# description (optional) - The description of the milestone
# due_date (optional) - The due date of the milestone
# due_date (optional) - The due date of the milestone
...
@@ -54,7 +54,7 @@ module Gitlab
...
@@ -54,7 +54,7 @@ module Gitlab
# Update an existing project milestone
# Update an existing project milestone
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# milestone_id (required) - The ID of a project milestone
# milestone_id (required) - The ID of a project milestone
# title (optional) - The title of a milestone
# title (optional) - The title of a milestone
# description (optional) - The description of a milestone
# description (optional) - The description of a milestone
...
...
lib/api/notes.rb
View file @
8f01190e
...
@@ -9,7 +9,7 @@ module Gitlab
...
@@ -9,7 +9,7 @@ module Gitlab
# Get a list of project wall notes
# Get a list of project wall notes
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# Example Request:
# Example Request:
# GET /projects/:id/notes
# GET /projects/:id/notes
get
":id/notes"
do
get
":id/notes"
do
...
@@ -20,7 +20,7 @@ module Gitlab
...
@@ -20,7 +20,7 @@ module Gitlab
# Get a single project wall note
# Get a single project wall note
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# note_id (required) - The ID of a note
# note_id (required) - The ID of a note
# Example Request:
# Example Request:
# GET /projects/:id/notes/:note_id
# GET /projects/:id/notes/:note_id
...
@@ -32,7 +32,7 @@ module Gitlab
...
@@ -32,7 +32,7 @@ module Gitlab
# Create a new project wall note
# Create a new project wall note
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# body (required) - The content of a note
# body (required) - The content of a note
# Example Request:
# Example Request:
# POST /projects/:id/notes
# POST /projects/:id/notes
...
@@ -54,7 +54,7 @@ module Gitlab
...
@@ -54,7 +54,7 @@ module Gitlab
# Get a list of project +noteable+ notes
# Get a list of project +noteable+ notes
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# noteable_id (required) - The ID of an issue or snippet
# noteable_id (required) - The ID of an issue or snippet
# Example Request:
# Example Request:
# GET /projects/:id/issues/:noteable_id/notes
# GET /projects/:id/issues/:noteable_id/notes
...
@@ -67,7 +67,7 @@ module Gitlab
...
@@ -67,7 +67,7 @@ module Gitlab
# Get a single +noteable+ note
# Get a single +noteable+ note
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# noteable_id (required) - The ID of an issue or snippet
# noteable_id (required) - The ID of an issue or snippet
# note_id (required) - The ID of a note
# note_id (required) - The ID of a note
# Example Request:
# Example Request:
...
@@ -82,7 +82,7 @@ module Gitlab
...
@@ -82,7 +82,7 @@ module Gitlab
# Create a new +noteable+ note
# Create a new +noteable+ note
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# noteable_id (required) - The ID of an issue or snippet
# noteable_id (required) - The ID of an issue or snippet
# body (required) - The content of a note
# body (required) - The content of a note
# Example Request:
# Example Request:
...
...
lib/api/projects.rb
View file @
8f01190e
...
@@ -16,7 +16,7 @@ module Gitlab
...
@@ -16,7 +16,7 @@ module Gitlab
# Get a single project
# Get a single project
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# Example Request:
# Example Request:
# GET /projects/:id
# GET /projects/:id
get
":id"
do
get
":id"
do
...
@@ -55,7 +55,7 @@ module Gitlab
...
@@ -55,7 +55,7 @@ module Gitlab
# Get a project team members
# Get a project team members
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# query - Query string
# query - Query string
# Example Request:
# Example Request:
# GET /projects/:id/members
# GET /projects/:id/members
...
@@ -71,7 +71,7 @@ module Gitlab
...
@@ -71,7 +71,7 @@ module Gitlab
# Get a project team members
# Get a project team members
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# user_id (required) - The ID of a user
# user_id (required) - The ID of a user
# Example Request:
# Example Request:
# GET /projects/:id/members/:user_id
# GET /projects/:id/members/:user_id
...
@@ -83,7 +83,7 @@ module Gitlab
...
@@ -83,7 +83,7 @@ module Gitlab
# Add a new project team member
# Add a new project team member
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# user_id (required) - The ID of a user
# user_id (required) - The ID of a user
# access_level (required) - Project access level
# access_level (required) - Project access level
# Example Request:
# Example Request:
...
@@ -106,7 +106,7 @@ module Gitlab
...
@@ -106,7 +106,7 @@ module Gitlab
# Update project team member
# Update project team member
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# user_id (required) - The ID of a team member
# user_id (required) - The ID of a team member
# access_level (required) - Project access level
# access_level (required) - Project access level
# Example Request:
# Example Request:
...
@@ -126,7 +126,7 @@ module Gitlab
...
@@ -126,7 +126,7 @@ module Gitlab
# Remove a team member from project
# Remove a team member from project
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# user_id (required) - The ID of a team member
# user_id (required) - The ID of a team member
# Example Request:
# Example Request:
# DELETE /projects/:id/members/:user_id
# DELETE /projects/:id/members/:user_id
...
@@ -139,7 +139,7 @@ module Gitlab
...
@@ -139,7 +139,7 @@ module Gitlab
# Get project hooks
# Get project hooks
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# Example Request:
# Example Request:
# GET /projects/:id/hooks
# GET /projects/:id/hooks
get
":id/hooks"
do
get
":id/hooks"
do
...
@@ -151,7 +151,7 @@ module Gitlab
...
@@ -151,7 +151,7 @@ module Gitlab
# Get a project hook
# Get a project hook
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# hook_id (required) - The ID of a project hook
# hook_id (required) - The ID of a project hook
# Example Request:
# Example Request:
# GET /projects/:id/hooks/:hook_id
# GET /projects/:id/hooks/:hook_id
...
@@ -164,7 +164,7 @@ module Gitlab
...
@@ -164,7 +164,7 @@ module Gitlab
# Add hook to project
# Add hook to project
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# url (required) - The hook URL
# url (required) - The hook URL
# Example Request:
# Example Request:
# POST /projects/:id/hooks
# POST /projects/:id/hooks
...
@@ -181,7 +181,7 @@ module Gitlab
...
@@ -181,7 +181,7 @@ module Gitlab
# Update an existing project hook
# Update an existing project hook
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# hook_id (required) - The ID of a project hook
# hook_id (required) - The ID of a project hook
# url (required) - The hook URL
# url (required) - The hook URL
# Example Request:
# Example Request:
...
@@ -202,7 +202,7 @@ module Gitlab
...
@@ -202,7 +202,7 @@ module Gitlab
# Delete project hook
# Delete project hook
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# hook_id (required) - The ID of hook to delete
# hook_id (required) - The ID of hook to delete
# Example Request:
# Example Request:
# DELETE /projects/:id/hooks
# DELETE /projects/:id/hooks
...
@@ -215,7 +215,7 @@ module Gitlab
...
@@ -215,7 +215,7 @@ module Gitlab
# Get a project repository branches
# Get a project repository branches
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# Example Request:
# Example Request:
# GET /projects/:id/repository/branches
# GET /projects/:id/repository/branches
get
":id/repository/branches"
do
get
":id/repository/branches"
do
...
@@ -225,7 +225,7 @@ module Gitlab
...
@@ -225,7 +225,7 @@ module Gitlab
# Get a single branch
# Get a single branch
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# branch (required) - The name of the branch
# branch (required) - The name of the branch
# Example Request:
# Example Request:
# GET /projects/:id/repository/branches/:branch
# GET /projects/:id/repository/branches/:branch
...
@@ -237,7 +237,7 @@ module Gitlab
...
@@ -237,7 +237,7 @@ module Gitlab
# Get a project repository tags
# Get a project repository tags
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# Example Request:
# Example Request:
# GET /projects/:id/repository/tags
# GET /projects/:id/repository/tags
get
":id/repository/tags"
do
get
":id/repository/tags"
do
...
@@ -247,7 +247,7 @@ module Gitlab
...
@@ -247,7 +247,7 @@ module Gitlab
# Get a project repository commits
# Get a project repository commits
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# ref_name (optional) - The name of a repository branch or tag
# ref_name (optional) - The name of a repository branch or tag
# Example Request:
# Example Request:
# GET /projects/:id/repository/commits
# GET /projects/:id/repository/commits
...
@@ -265,7 +265,7 @@ module Gitlab
...
@@ -265,7 +265,7 @@ module Gitlab
# Get a project snippets
# Get a project snippets
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# Example Request:
# Example Request:
# GET /projects/:id/snippets
# GET /projects/:id/snippets
get
":id/snippets"
do
get
":id/snippets"
do
...
@@ -275,7 +275,7 @@ module Gitlab
...
@@ -275,7 +275,7 @@ module Gitlab
# Get a project snippet
# Get a project snippet
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# snippet_id (required) - The ID of a project snippet
# snippet_id (required) - The ID of a project snippet
# Example Request:
# Example Request:
# GET /projects/:id/snippets/:snippet_id
# GET /projects/:id/snippets/:snippet_id
...
@@ -287,7 +287,7 @@ module Gitlab
...
@@ -287,7 +287,7 @@ module Gitlab
# Create a new project snippet
# Create a new project snippet
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# title (required) - The title of a snippet
# title (required) - The title of a snippet
# file_name (required) - The name of a snippet file
# file_name (required) - The name of a snippet file
# lifetime (optional) - The expiration date of a snippet
# lifetime (optional) - The expiration date of a snippet
...
@@ -313,7 +313,7 @@ module Gitlab
...
@@ -313,7 +313,7 @@ module Gitlab
# Update an existing project snippet
# Update an existing project snippet
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# snippet_id (required) - The ID of a project snippet
# snippet_id (required) - The ID of a project snippet
# title (optional) - The title of a snippet
# title (optional) - The title of a snippet
# file_name (optional) - The name of a snippet file
# file_name (optional) - The name of a snippet file
...
@@ -339,7 +339,7 @@ module Gitlab
...
@@ -339,7 +339,7 @@ module Gitlab
# Delete a project snippet
# Delete a project snippet
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# snippet_id (required) - The ID of a project snippet
# snippet_id (required) - The ID of a project snippet
# Example Request:
# Example Request:
# DELETE /projects/:id/snippets/:snippet_id
# DELETE /projects/:id/snippets/:snippet_id
...
@@ -353,7 +353,7 @@ module Gitlab
...
@@ -353,7 +353,7 @@ module Gitlab
# Get a raw project snippet
# Get a raw project snippet
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# snippet_id (required) - The ID of a project snippet
# snippet_id (required) - The ID of a project snippet
# Example Request:
# Example Request:
# GET /projects/:id/snippets/:snippet_id/raw
# GET /projects/:id/snippets/:snippet_id/raw
...
@@ -366,7 +366,7 @@ module Gitlab
...
@@ -366,7 +366,7 @@ module Gitlab
# Get a raw file contents
# Get a raw file contents
#
#
# Parameters:
# Parameters:
# id (required) - The ID o
r code name o
f a project
# id (required) - The ID of a project
# sha (required) - The commit or branch name
# sha (required) - The commit or branch name
# filepath (required) - The path to the file to display
# filepath (required) - The path to the file to display
# Example Request:
# Example Request:
...
...
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