Skip to content

Commit

Permalink
[#8]♻️Refactor: 안 쓰는 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
sumin220 committed Nov 23, 2024
1 parent 61b1350 commit e32a76b
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,9 @@

public interface BoardRepository extends JpaRepository<Board, Long> {
Optional<Board> findFirstByWriter(Member member);
List<Board> findByWriter(Member member);

List<Board> findBySummitId(Long summitId);

List<Board> findAllByBoardIdIn(List<Long> boardIds);
}

0 comments on commit e32a76b

Please sign in to comment.