diff options
author | Fabio Busatto <fabio@gitlab.com> | 2019-03-27 09:01:07 +0000 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2019-03-27 09:01:07 +0000 |
commit | 035c8af12e4ea6dbba18255214bad2a53c1b1cf1 (patch) | |
tree | fc20eba28a847b6a7d65886dc864450198a75a77 /doc/api/group_milestones.md | |
parent | 978aa04f30185b5a4adaa5e26d4a9674a8d37811 (diff) | |
download | gitlab-ce-035c8af12e4ea6dbba18255214bad2a53c1b1cf1.tar.gz |
Resolve "Get milestone by title via API"
Diffstat (limited to 'doc/api/group_milestones.md')
-rw-r--r-- | doc/api/group_milestones.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/api/group_milestones.md b/doc/api/group_milestones.md index 1c2f56581eb..260eb09cc38 100644 --- a/doc/api/group_milestones.md +++ b/doc/api/group_milestones.md @@ -12,6 +12,7 @@ GET /groups/:id/milestones?iids[]=42 GET /groups/:id/milestones?iids[]=42&iids[]=43 GET /groups/:id/milestones?state=active GET /groups/:id/milestones?state=closed +GET /groups/:id/milestones?title=1.0 GET /groups/:id/milestones?search=version ``` @@ -22,6 +23,7 @@ Parameters: | `id` | integer/string | yes | The ID or [URL-encoded path of the group](README.md#namespaced-path-encoding) owned by the authenticated user | | `iids[]` | Array[integer] | optional | Return only the milestones having the given `iid` | | `state` | string | optional | Return only `active` or `closed` milestones | +| `title` | string | optional | Return only the milestones having the given `title` | | `search` | string | optional | Return only milestones with a title or description matching the provided string | ```bash |