Skip to content

Commit babf46c

Browse files
committed
refactor: 프로필 수정 DTO에서 이메일 필드 제거
1 parent 80ad213 commit babf46c

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package com.back.domain.profile.dto;
22

3-
import jakarta.validation.constraints.Email;
43
import jakarta.validation.constraints.Size;
54
import lombok.Getter;
65
import lombok.Setter;
@@ -11,7 +10,4 @@ public class ProfileUpdateRequestDto {
1110

1211
@Size(min = 1, max = 10, message = "닉네임은 1~10자")
1312
private String nickname;
14-
15-
@Email(message = "이메일 형식이 아닙니다")
16-
private String email;
1713
}

0 commit comments

Comments
 (0)