diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-09-25 06:57:34 -0700 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-09-25 06:57:34 -0700 |
commit | 1165759b14b02ad87dff46716e37e569f678b0b5 (patch) | |
tree | 8c3277a947e1c7094a0729748f8ec67522bd31d2 /doc/api | |
parent | 203bc7bb7e352391bc1405c800ae4907d7f3fe02 (diff) | |
parent | 04c7c262a7be469a4ae4865464b003c4b522a895 (diff) | |
download | gitlab-ce-1165759b14b02ad87dff46716e37e569f678b0b5.tar.gz |
Merge pull request #5146 from karlhungus/feature-api-search-for-projects-by-name
Added search for projects by name to api
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/projects.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/api/projects.md b/doc/api/projects.md index 9afffcbaa80..5150331e7d7 100644 --- a/doc/api/projects.md +++ b/doc/api/projects.md @@ -484,3 +484,18 @@ DELETE /projects/:id/fork Parameter: + `id` (required) - The ID of the project + + +## Search for projects by name + +Search for projects by name which are public or the calling user has access to + +``` +GET /projects/search/:query +``` + +Parameters: + ++ query (required) - A string contained in the project name ++ per_page (optional) - number of projects to return per page ++ page (optional) - the page to retrieve |