Skip to content

Commit

Permalink
⚡️ fix: UserMission 삭제 메서드명 수정 #126
Browse files Browse the repository at this point in the history
  • Loading branch information
jun02160 committed Mar 2, 2024
1 parent caefff2 commit 24d9194
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public interface UserMissionRepository extends JpaRepository<UserMission, Long>


//== DELETE ==//
void deleteByUser(User user);
void deleteAllByUser(User user);


//== UPDATE ==//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public boolean existsByUser(User user) {

//== DELETE ==//
public void deleteByUser(User user) {
userMissionRepository.deleteByUser(user);
userMissionRepository.deleteAllByUser(user);
}

//== UPDATE ==//
Expand Down

0 comments on commit 24d9194

Please sign in to comment.