diff options
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/projects.md | 18 | ||||
-rw-r--r-- | doc/api/repositories.md | 12 |
2 files changed, 29 insertions, 1 deletions
diff --git a/doc/api/projects.md b/doc/api/projects.md index d4d883e54ec..9b5d62ac832 100644 --- a/doc/api/projects.md +++ b/doc/api/projects.md @@ -2,7 +2,7 @@ ### List projects -Get a list of projects owned by the authenticated user. +Get a list of projects accessible by the authenticated user. ``` GET /projects @@ -82,6 +82,22 @@ GET /projects ``` +#### List owned projects + +Get a list of projects owned by the authenticated user. + +``` +GET /projects/owned +``` + +#### List ALL projects + +Get a list of all GitLab projects (admin only). + +``` +GET /projects/all +``` + ### Get single project Get a specific project, identified by project ID or NAMESPACE/PROJECT_NAME , which is owned by the authentication user. diff --git a/doc/api/repositories.md b/doc/api/repositories.md index 9ec6ba74125..af760795d00 100644 --- a/doc/api/repositories.md +++ b/doc/api/repositories.md @@ -397,3 +397,15 @@ Parameters: + `branch_name` (required) - The name of branch + `content` (required) - New file content + `commit_message` (required) - Commit message + +## Delete existing file in repository + +``` +DELETE /projects/:id/repository/files +``` + +Parameters: + ++ `file_path` (required) - Full path to file. Ex. lib/class.rb ++ `branch_name` (required) - The name of branch ++ `commit_message` (required) - Commit message |