We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09054d0 commit b832cccCopy full SHA for b832ccc
โserver/src/user/dto/request/login.dto.tsโ
@@ -3,15 +3,15 @@ import { IsEmail, IsNotEmpty } from 'class-validator';
3
4
export class LoginDto {
5
@ApiProperty({
6
- example: 'example@example.com',
+ example: 'test@test.com',
7
description: '์ด๋ฉ์ผ์ ์ ๋ ฅํด์ฃผ์ธ์.',
8
})
9
@IsEmail({}, { message: '์ด๋ฉ์ผ ์ฃผ์ ํ์์ ๋ง์ถฐ์ ์์ฑํด์ฃผ์ธ์.' })
10
@IsNotEmpty({ message: '์ด๋ฉ์ผ์ ์ ๋ ฅํ์ธ์.' })
11
email: string;
12
13
14
- example: 'example1234!',
+ example: 'test1234!',
15
description: '๋น๋ฐ๋ฒํธ๋ฅผ ์ ๋ ฅํด์ฃผ์ธ์.',
16
17
@IsNotEmpty({ message: '๋น๋ฐ๋ฒํธ๋ฅผ ์ ๋ ฅํ์ธ์.' })
0 commit comments