chore: update swagger
This commit is contained in:
parent
5381184a07
commit
b2b4d7b8ea
|
@ -148,6 +148,16 @@ paths:
|
||||||
$ref: "#/components/schemas/AccountInfoResponse"
|
$ref: "#/components/schemas/AccountInfoResponse"
|
||||||
"401":
|
"401":
|
||||||
description: Unauthorized
|
description: Unauthorized
|
||||||
|
/api/upload-limit:
|
||||||
|
get:
|
||||||
|
summary: Get the basic file upload (POST) upload limit set by the portal
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Upload limit retrieved successfully
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: "#/components/schemas/UploadLimitResponse"
|
||||||
|
|
||||||
components:
|
components:
|
||||||
schemas:
|
schemas:
|
||||||
|
@ -254,3 +264,10 @@ components:
|
||||||
type: string
|
type: string
|
||||||
email:
|
email:
|
||||||
type: string
|
type: string
|
||||||
|
UploadLimitResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
limit:
|
||||||
|
type: number
|
||||||
|
required:
|
||||||
|
- limit
|
||||||
|
|
Loading…
Reference in New Issue