diff options
author | kolaente <konrad@kola-entertainments.de> | 2018-03-07 11:00:56 +0100 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2018-03-07 12:00:56 +0200 |
commit | 1a83581121a80c8deb8160e2d04905ab71768be3 (patch) | |
tree | 1eb029aea9f5fec59d359225c058feacc33b2134 /public/swagger.v1.json | |
parent | d71f510c6240502ba37955d8e89b987cad1edb65 (diff) | |
download | gitea-1a83581121a80c8deb8160e2d04905ab71768be3.tar.gz gitea-1a83581121a80c8deb8160e2d04905ab71768be3.zip |
Added issue search via api (#3612)
* Started implementing issue api search
* Implemented issue search via api
* Added search to swagger.json
* Removed todo
* fmt
* Added comment to generate swagger json via "generate-swagger"
* Simplified search
* fmt
* Removed unessecary comment
* Removed unessecary declaration of the issues-variable
* Removed unessecary comment
* Removed unessecary comment
* Added explanation keyword
* Simplified check for empty keyword
* corrected check if keyword is empty
Diffstat (limited to 'public/swagger.v1.json')
-rw-r--r-- | public/swagger.v1.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/public/swagger.v1.json b/public/swagger.v1.json index ad1b91ad81..5c3c21532f 100644 --- a/public/swagger.v1.json +++ b/public/swagger.v1.json @@ -1830,6 +1830,12 @@ "description": "page number of requested issues", "name": "page", "in": "query" + }, + { + "type": "string", + "description": "search string", + "name": "q", + "in": "query" } ], "responses": { |