fix issues

This commit is contained in:
2026-01-01 16:32:06 +01:00
parent aee182b09e
commit 17d715f259
19 changed files with 1014 additions and 344 deletions

View File

@@ -50,8 +50,11 @@ export class SignupParamsDTO {
export class LoginParamsDTO {
@ApiProperty()
@IsEmail()
email!: string;
@ApiProperty()
@IsString()
password!: string;
}
@@ -64,10 +67,15 @@ export class IracingAuthRedirectResultDTO {
export class LoginWithIracingCallbackParamsDTO {
@ApiProperty()
@IsString()
code!: string;
@ApiProperty()
@IsString()
state!: string;
@ApiProperty({ required: false })
@IsString()
returnTo?: string;
}