Skip to content

Commit b832ccc

Browse files
committed
๐Ÿ› fix: docker init ๋ฐ์ดํ„ฐ์™€ ๋™์ผํ•˜๊ฒŒ ์ˆ˜์ •
1 parent 09054d0 commit b832ccc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

โ€Žserver/src/user/dto/request/login.dto.tsโ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ import { IsEmail, IsNotEmpty } from 'class-validator';
33

44
export class LoginDto {
55
@ApiProperty({
6-
example: 'example@example.com',
6+
example: 'test@test.com',
77
description: '์ด๋ฉ”์ผ์„ ์ž…๋ ฅํ•ด์ฃผ์„ธ์š”.',
88
})
99
@IsEmail({}, { message: '์ด๋ฉ”์ผ ์ฃผ์†Œ ํ˜•์‹์— ๋งž์ถฐ์„œ ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”.' })
1010
@IsNotEmpty({ message: '์ด๋ฉ”์ผ์„ ์ž…๋ ฅํ•˜์„ธ์š”.' })
1111
email: string;
1212

1313
@ApiProperty({
14-
example: 'example1234!',
14+
example: 'test1234!',
1515
description: '๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ์ž…๋ ฅํ•ด์ฃผ์„ธ์š”.',
1616
})
1717
@IsNotEmpty({ message: '๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”.' })

0 commit comments

Comments
ย (0)