diff options
author | Sean McGivern <sean@gitlab.com> | 2019-02-05 09:52:40 +0000 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2019-02-05 09:52:40 +0000 |
commit | 068b41275f6f142acfddca273ace68d03a6c0730 (patch) | |
tree | c3f4c927ede7a09242f16771481a0cb7f627fc91 /doc/api/issues.md | |
parent | a34d6abd3b2ee98b0a68b4571c7de61321b4a3ce (diff) | |
parent | 40198f81843b315f2eb1c1a1a65292b6fc61f9d7 (diff) | |
download | gitlab-ce-068b41275f6f142acfddca273ace68d03a6c0730.tar.gz |
Merge branch 'search-title' into 'master'
Add 'in' filter that modifies scope of 'search' filter to issues and merge requests API
See merge request gitlab-org/gitlab-ce!24350
Diffstat (limited to 'doc/api/issues.md')
-rw-r--r-- | doc/api/issues.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/api/issues.md b/doc/api/issues.md index 6d8683601f6..ed3165d95df 100644 --- a/doc/api/issues.md +++ b/doc/api/issues.md @@ -31,6 +31,7 @@ GET /issues?iids[]=42&iids[]=43 GET /issues?author_id=5 GET /issues?assignee_id=5 GET /issues?my_reaction_emoji=star +GET /issues?search=foo&in=title ``` | Attribute | Type | Required | Description | @@ -46,6 +47,7 @@ GET /issues?my_reaction_emoji=star | `order_by` | string | no | Return issues ordered by `created_at` or `updated_at` fields. Default is `created_at` | | `sort` | string | no | Return issues sorted in `asc` or `desc` order. Default is `desc` | | `search` | string | no | Search issues against their `title` and `description` | +| `in` | string | no | Modify the scope of the `search` attribute. `title`, `description`, or a string joining them with comma. Default is `title,description` | | `created_after` | datetime | no | Return issues created on or after the given time | | `created_before` | datetime | no | Return issues created on or before the given time | | `updated_after` | datetime | no | Return issues updated on or after the given time | |