diff options
author | Sytse Sijbrandij <sytse@dosire.com> | 2013-11-19 16:38:43 +0100 |
---|---|---|
committer | Sytse Sijbrandij <sytse@dosire.com> | 2013-11-19 16:38:43 +0100 |
commit | 6413bfb5c640d44d38fe4054c7b33f1db285c687 (patch) | |
tree | 5e28e7be8806169ed21a0607c5b266124133d94a /doc/api/projects.md | |
parent | 250a86d2787ae60aaf800a5ebfee69caa4d1a1d5 (diff) | |
parent | 6cc3cc515267712733d6dd1643080bd6b2cc6cdc (diff) | |
download | gitlab-ce-6413bfb5c640d44d38fe4054c7b33f1db285c687.tar.gz |
Merge branch 'master' into full-post-to-oss-security
Conflicts:
doc/release/security.md
Diffstat (limited to 'doc/api/projects.md')
-rw-r--r-- | doc/api/projects.md | 18 |
1 files changed, 17 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. |