1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-23 02:38:35 +00:00

Add filter by owner and team to issue/pulls search endpoint (#16662)

* Filter by owner and team in API issue/pulls search

* Add integration test
This commit is contained in:
Jimmy Praet
2021-08-13 22:47:25 +02:00
committed by GitHub
parent 3a6edd3685
commit a4962a9440
5 changed files with 87 additions and 3 deletions

View File

@@ -1939,6 +1939,18 @@
"name": "review_requested",
"in": "query"
},
{
"type": "string",
"description": "filter by owner",
"name": "owner",
"in": "query"
},
{
"type": "string",
"description": "filter by team (requires organization owner parameter to be provided)",
"name": "team",
"in": "query"
},
{
"type": "integer",
"description": "page number of results to return (1-based)",