Skip to content

Commit

Permalink
[#3]♻️Refactor: email 안 받도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sumin220 committed Nov 23, 2024
1 parent 241439a commit 8253b99
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ public record MemberSignUpDTO(
@NotBlank(message = "연락처를 입력해주세요")
String phoneNumber,

@NotBlank(message = "이메일을 입력해주세요")
String email,

@NotNull(message = "참여자 구분을 선택해주세요")
UserType userType, // 청년 창업가 or 예비 투자자

Expand All @@ -45,7 +42,6 @@ public Member toEntity() {
return Member.builder()
.username(name)
.phoneNumber(phoneNumber)
.email(email)
.userType(userType)
.company(company)
.position(position)
Expand Down

0 comments on commit 8253b99

Please sign in to comment.