Skip to content

Commit

Permalink
Merge pull request #99 from Leets-Official/refactor/#98/회원정보-수정
Browse files Browse the repository at this point in the history
Refactor #99 회원정보 수정 API 수정
  • Loading branch information
hyxklee authored Feb 4, 2025
2 parents e7a33ec + aee125c commit 7894d38
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

public record MemberInfoRequestDto(
@NotNull String profilePicture,
@NotNull String nickName,
@NotNull String accountNumber
@NotNull String nickName
) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ public void updateGoogleId(String googleId) {
public void updateMemberInfo(MemberInfoRequestDto dto) {
this.profilePicture = dto.profilePicture();
this.nickname = dto.nickName();
this.accountNumber = dto.accountNumber();
}

public void updateAgreement(MemberAgreementRequestDto dto) {
Expand Down

0 comments on commit 7894d38

Please sign in to comment.