split tag of apiManage & fix manual swagger json add page and pageSize
This commit is contained in:
parent
4c0b729b81
commit
aef83124ed
1 changed files with 19 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ import { ApiName } from "../entities/ApiName";
|
|||
import { Profile } from "../entities/Profile";
|
||||
|
||||
@Route("api/v1/org/api-manage")
|
||||
@Tags("ApiKey")
|
||||
@Tags("ApiManage")
|
||||
@Security("bearerAuth")
|
||||
@Response(
|
||||
HttpStatusCode.INTERNAL_SERVER_ERROR,
|
||||
|
|
@ -675,6 +675,24 @@ export class ApiManageController extends Controller {
|
|||
type: "string",
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "page",
|
||||
in: "query",
|
||||
required: false,
|
||||
schema: {
|
||||
type: "integer",
|
||||
default: 1,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "pageSize",
|
||||
in: "query",
|
||||
required: false,
|
||||
schema: {
|
||||
type: "integer",
|
||||
default: 100,
|
||||
},
|
||||
},
|
||||
],
|
||||
responses: {
|
||||
200: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue