Skip to content

Commit

Permalink
[#111] Chore: 메소드 네이밍 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
tkguswls1106 committed May 29, 2024
1 parent 65ceda5 commit d52c0e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/sajang/devracebackend/domain/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void updateRefreshToken(String refreshToken) {
this.refreshToken = refreshToken;
}

public void deleteUser() { // 회원 계정탈퇴 (imageUrl 초기화는 따로 구성) - soft delete
public void deleteAccount() { // 회원 계정탈퇴 (imageUrl 초기화는 따로 구성) - soft delete
this.email = null;
this.nickname = "(탈퇴한 사용자)";
this.bojId = null;
Expand Down

0 comments on commit d52c0e0

Please sign in to comment.