We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e765943 commit e5d71f3Copy full SHA for e5d71f3
1 file changed
src/main/java/com/herethere/withus/user/domain/User.java
@@ -73,6 +73,9 @@ public void withdraw() {
73
if (userStatus == UserStatus.DELETED) {
74
throw new ConflictException(ErrorCode.USER_ALREADY_DELETED);
75
}
76
+ nickname = "알 수 없음";
77
+ birthday = null;
78
+ profileImageKey = null;
79
userStatus = UserStatus.DELETED;
80
81
0 commit comments