Skip to content

Commit

Permalink
[FIX/#146] 회원가입 시 휴대전화 번호 저장 형식 수정
Browse files Browse the repository at this point in the history
'-' 빼고 숫자만 추출하여 저장
  • Loading branch information
ckkim817 committed Jul 26, 2024
1 parent 0950242 commit 4cfe094
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public MemberJoinResponse patchMemberJoin(MemberJoinRequest memberJoinRequest) {
memberJoinRequest.isSubscribed(),
memberJoinRequest.nickname(),
memberJoinRequest.image(),
memberJoinRequest.phoneNumber(),
memberJoinRequest.phoneNumber().replaceAll("-", ""),
memberJoinRequest.univName(),
memberJoinRequest.field(),
memberJoinRequest.departmentList()
Expand Down

0 comments on commit 4cfe094

Please sign in to comment.