diff options
author | Oswaldo Ferreira <oswaldo@gitlab.com> | 2017-03-02 16:47:10 -0300 |
---|---|---|
committer | Toon Claes <toon@gitlab.com> | 2017-03-03 12:02:41 +0100 |
commit | 06e96907eef49c3be1b3608e77420e42d554943a (patch) | |
tree | 36e8c1d69e1822d04e46b0195c4ca4b83182b656 /doc/api | |
parent | a9a581567c6d56186feade11ad867a66ab872ca6 (diff) | |
download | gitlab-ce-06e96907eef49c3be1b3608e77420e42d554943a.tar.gz |
Add filter param for authorized projects for current_user for V4
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/projects.md | 1 | ||||
-rw-r--r-- | doc/api/v3_to_v4.md | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/api/projects.md b/doc/api/projects.md index f6eabc1f663..6805e7d67e9 100644 --- a/doc/api/projects.md +++ b/doc/api/projects.md @@ -37,6 +37,7 @@ Parameters: | `search` | string | no | Return list of authorized projects matching the search criteria | | `simple` | boolean | no | Return only the ID, URL, name, and path of each project | | `owned` | boolean | no | Limit by projects owned by the current user | +| `authorized` | boolean | no | Limit by projects authorized for the current user | | `starred` | boolean | no | Limit by projects starred by the current user | ```json diff --git a/doc/api/v3_to_v4.md b/doc/api/v3_to_v4.md index cca58894476..92f2e02405d 100644 --- a/doc/api/v3_to_v4.md +++ b/doc/api/v3_to_v4.md @@ -53,3 +53,4 @@ changes are in V4: - Remove `GET /groups/owned`. Use `GET /groups?owned=true` instead [!9505](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9505) - Return 202 with JSON body on async removals on V4 API (DELETE `/projects/:id/repository/merged_branches` and DELETE `/projects/:id`) [!9449](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9449) - `projects/:id/milestones?iid[]=x&iid[]=y` array filter has been renamed to `iids` [!9096](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9096) +- Enable filtering user's authorized projects with boolean param `authorized` on `/projects` endpoint [!9674](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9674) |