chore: update swagger

This commit is contained in:
Derrick Hammer 2024-03-17 11:10:59 -04:00
parent 5381184a07
commit b2b4d7b8ea
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 17 additions and 0 deletions

View File

@ -148,6 +148,16 @@ paths:
$ref: "#/components/schemas/AccountInfoResponse"
"401":
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:
schemas:
@ -254,3 +264,10 @@ components:
type: string
email:
type: string
UploadLimitResponse:
type: object
properties:
limit:
type: number
required:
- limit