mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
add pagination for admin api get orgs and fix only list public orgs bug (#7742)
This commit is contained in:
committed by
techknowlogick
parent
7b2a39c78b
commit
5b902e2368
@@ -33,6 +33,20 @@
|
||||
],
|
||||
"summary": "List all organizations",
|
||||
"operationId": "adminGetAllOrgs",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "integer",
|
||||
"description": "page number of results to return (1-based)",
|
||||
"name": "page",
|
||||
"in": "query"
|
||||
},
|
||||
{
|
||||
"type": "integer",
|
||||
"description": "page size of results, maximum page size is 50",
|
||||
"name": "limit",
|
||||
"in": "query"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"$ref": "#/responses/OrganizationList"
|
||||
|
Reference in New Issue
Block a user