Skip to content

Commit

Permalink
HOTFIX: 가능시간 삽입에 삭제 기능 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
oxdjww authored Nov 6, 2024
1 parent 4b7ba7d commit 196a289
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ public List<PossibleDateCreateGetResponseDto> updatePossibleDate(List<PossibleDa
Mentor mentor = user.getMentor();

// 가능 시간을 갱신하기 위해 모든 가능 시간을 삭제 후 새로운 값 삽입
possibleDateRepository.deleteAllByMentor(mentor);
log.info("[*] 멘토(" + username + ")의 가능시간 모두 삭제(가능시간 갱신 API 일부)");
// possibleDateRepository.deleteAllByMentor(mentor);
// log.info("[*] 멘토(" + username + ")의 가능시간 모두 삭제(가능시간 갱신 API 일부)");

List<PossibleDate> possibleDates = dtos.stream()
.map(dto -> {
Expand Down

0 comments on commit 196a289

Please sign in to comment.