add remember me checkbox
This commit is contained in:
parent
334435cf78
commit
3b4f384582
6 changed files with 43 additions and 9 deletions
|
@ -188,8 +188,7 @@ export interface paths {
|
|||
requestBody: {
|
||||
content: {
|
||||
'multipart/form-data': {
|
||||
/** Format: binary */
|
||||
file?: string
|
||||
file?: components['schemas']['IFormFile']
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -502,6 +501,8 @@ export interface components {
|
|||
DeletePostReactionRequest: {
|
||||
emoji: string
|
||||
}
|
||||
/** Format: binary */
|
||||
IFormFile: string
|
||||
ListSignupCodesResult: {
|
||||
signupCodes: components['schemas']['SignupCodeDto'][]
|
||||
}
|
||||
|
@ -513,6 +514,7 @@ export interface components {
|
|||
LoginRequest: {
|
||||
username: string
|
||||
password: string
|
||||
rememberMe: boolean | null
|
||||
}
|
||||
LoginResponse: {
|
||||
/** Format: uuid */
|
||||
|
@ -560,7 +562,7 @@ export interface components {
|
|||
username: string
|
||||
password: string
|
||||
signupCode: string
|
||||
email: string | null
|
||||
rememberMe: boolean | null
|
||||
}
|
||||
RegisterResponse: {
|
||||
/** Format: uuid */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue