Skip to content

Commit

Permalink
chore: deleteByBoardId 파라미터 오타를 수정한다.
Browse files Browse the repository at this point in the history
  • Loading branch information
min429 committed Aug 6, 2024
1 parent 1824807 commit cae3877
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void delete(Long userId, Long boardId) {
if (accompanyUserService.isHostOfBoard(userId, boardId)) {
accompanyBoardRepository.deleteById(boardId);
accompanyImageService.deleteByBoardId(boardId);
accompanyUserService.deleteByBoardId(userId);
accompanyUserService.deleteByBoardId(boardId);
accompanyTagService.deleteByBoardId(boardId);
accompanyRequestService.deleteByBoardId(boardId);
} else {
Expand Down

0 comments on commit cae3877

Please sign in to comment.