This commit is contained in:
john 2025-05-18 22:45:27 +02:00
parent 27098ec9fa
commit 4878897306
10 changed files with 268 additions and 32 deletions

View file

@ -87,7 +87,8 @@ export interface paths {
requestBody: {
content: {
'multipart/form-data': {
file?: components['schemas']['IFormFile']
/** Format: binary */
file?: string
}
}
}
@ -361,8 +362,6 @@ export interface components {
/** Format: uuid */
next: string | null
}
/** Format: binary */
IFormFile: string
ListSignupCodesResult: {
signupCodes: components['schemas']['SignupCodeDto'][]
}
@ -374,6 +373,7 @@ export interface components {
/** Format: uuid */
userId: string
username: string
isSuperUser: boolean
}
PostAuthorDto: {
/** Format: uuid */
@ -407,6 +407,7 @@ export interface components {
/** Format: uuid */
userId: string
username: string
isSuperUser: boolean
}
SignupCodeDto: {
code: string