diff options
| author | Oswaldo Ferreira <oswaldo@gitlab.com> | 2017-03-30 22:11:12 -0300 |
|---|---|---|
| committer | Oswaldo Ferreira <oswaldo@gitlab.com> | 2017-04-05 13:50:12 -0300 |
| commit | 7cb907cc77f5b7fdc4a5b2acc094e1fa3b3b9f92 (patch) | |
| tree | 5ba36dd36a7ec14253532d93f596b353831ecdd3 /lib/api | |
| parent | 4dd841c95aea291544bf69e796a757ba82f06a77 (diff) | |
| download | gitlab-ce-30195-document-search-param-on-api.tar.gz | |
Add "search" optional param and docs for V430195-document-search-param-on-api
Notice that this param is being supported since V3, but we have not added the proper docs for it
Diffstat (limited to 'lib/api')
| -rw-r--r-- | lib/api/issues.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/api/issues.rb b/lib/api/issues.rb index 4dce5dd130a..09053e615cb 100644 --- a/lib/api/issues.rb +++ b/lib/api/issues.rb @@ -26,6 +26,7 @@ module API desc: 'Return issues sorted in `asc` or `desc` order.' optional :milestone, type: String, desc: 'Return issues for a specific milestone' optional :iids, type: Array[Integer], desc: 'The IID array of issues' + optional :search, type: String, desc: 'Search issues for text present in the title or description' use :pagination end |
