diff options
author | David Eisner <david.eisner@oriel.oxon.org> | 2016-10-26 09:08:58 +0100 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-01-12 17:51:06 -0500 |
commit | 7ef1c6408e95c780e947e5c56cfae10b3dbb03d4 (patch) | |
tree | 6603a9e457e6ef35e3fd0554789823242d519a38 /doc/api | |
parent | 5c253116ae57c9db567394f544a40997de115f82 (diff) | |
download | gitlab-ce-7ef1c6408e95c780e947e5c56cfae10b3dbb03d4.tar.gz |
API: Implement project issues iid param with IssuesFinder and add tests23194-fix-no-milestone-option-for-projects-endpoint
- Use IssuesFinder for the /issues API resouce
- Tests for iid filter in project issues API resource
- Tests for No Milestone filter in issues API resources
The "No Milestone" case was not previously tested, and the `/issues`
resource did not support the the `milestone` parameter.
- Return issues where all labels match from the issues and project issues
API resources, like the group issues resource already does. See
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6825#note_17474533
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/issues.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/api/issues.md b/doc/api/issues.md index 119125bcd3d..dd84afd7c73 100644 --- a/doc/api/issues.md +++ b/doc/api/issues.md @@ -23,12 +23,15 @@ GET /issues?state=closed GET /issues?labels=foo GET /issues?labels=foo,bar GET /issues?labels=foo,bar&state=opened +GET /issues?milestone=1.0.0 +GET /issues?milestone=1.0.0&state=opened ``` | Attribute | Type | Required | Description | | --------- | ---- | -------- | ----------- | | `state` | string | no | Return all issues or just those that are `opened` or `closed`| | `labels` | string | no | Comma-separated list of label names, issues with any of the labels will be returned | +| `milestone` | string| no | The milestone title | | `order_by`| string | no | Return requests ordered by `created_at` or `updated_at` fields. Default is `created_at` | | `sort` | string | no | Return requests sorted in `asc` or `desc` order. Default is `desc` | |