signups
This commit is contained in:
parent
27098ec9fa
commit
4878897306
10 changed files with 268 additions and 32 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue