This commit is contained in:
2025-11-18 00:20:15 +03:30
parent 607e2ec2cf
commit e2b2a746f7
6 changed files with 102 additions and 12 deletions
+1 -1
View File
@@ -13,6 +13,6 @@ export class RequestOtpDto {
@IsNotEmpty()
@IsString()
@ApiProperty({ example: '', description: 'restaurant slug' })
@ApiProperty({ example: 'zhivan', description: 'restaurant slug' })
slug: string;
}
+2 -2
View File
@@ -13,12 +13,12 @@ export class VerifyOtpDto {
@IsNotEmpty()
@IsString()
@ApiProperty({ example: '12345', description: 'Otp' })
@ApiProperty({ example: '', description: 'Otp' })
@Length(5)
otp: string;
@IsNotEmpty()
@IsString()
@ApiProperty({ example: '', description: 'restaurant slug' })
@ApiProperty({ example: 'zhivan', description: 'restaurant slug' })
slug: string;
}