diff options
author | jubianchi <contact@jubianchi.fr> | 2014-09-05 00:01:12 +0200 |
---|---|---|
committer | jubianchi <contact@jubianchi.fr> | 2014-09-26 22:03:37 +0200 |
commit | f258a59ef6156f9da3b527efe9088fd0708f6fdf (patch) | |
tree | d7c298073fca133d4b168544740204d99a0cf039 /doc/api | |
parent | fd338d67159e6dffaf54fd42fbeddb3b17e4d49f (diff) | |
download | gitlab-ce-f258a59ef6156f9da3b527efe9088fd0708f6fdf.tar.gz |
Filters issues by milestone via API
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 a935b146d37..ceeb683a6bf 100644 --- a/doc/api/issues.md +++ b/doc/api/issues.md @@ -95,6 +95,8 @@ GET /projects/:id/issues?state=closed GET /projects/:id/issues?labels=foo GET /projects/:id/issues?labels=foo,bar GET /projects/:id/issues?labels=foo,bar&state=opened +GET /projects/:id/issues?milestone=1.0.0 +GET /projects/:id/issues?milestone=1.0.0&state=opened ``` Parameters: @@ -102,6 +104,7 @@ Parameters: - `id` (required) - The ID of a project - `state` (optional) - Return `all` issues or just those that are `opened` or `closed` - `labels` (optional) - Comma-separated list of label names +- `milestone` (optional) - Milestone title ## Single issue |