Skip to content

Commit

Permalink
Merge pull request #201 from chjcode/feat/delete-account-member-nickname
Browse files Browse the repository at this point in the history
fix (delete-account) : withdrawn member의 nickname을 null로 변경되도록 수정
  • Loading branch information
chjcode authored Oct 6, 2024
2 parents f0933c0 + 6af1cd1 commit 053a8eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void addRandomPoint(Integer randomPoint) {

public void withdrawMember() {
this.rewardPoint = 0;
this.nickname = "탈퇴한 회원";
this.nickname = null;
this.email = "withdrawnMember";
this.profileIntro = null;
this.picture = null;
Expand Down

0 comments on commit 053a8eb

Please sign in to comment.