Skip to content

Commit

Permalink
[FIX] compile error solved
Browse files Browse the repository at this point in the history
omitted declaration of jpa method
  • Loading branch information
c0smosaur authored Jun 9, 2024
1 parent 0bcbe22 commit 91d2fa4
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ public interface ClubMemberRepository extends JpaRepository<ClubMember, Long> {

List<ClubMember> findByClubId(Long clubId);

boolean existsByClubIdAndMemberId(Long clubId, Long memberId);

Optional<ClubMember> findByClubIdAndMemberId(Long clubId, Long memberId);

Optional<ClubMember> findByMemberIdAndClubId(Long memberId, Long clubId);
Expand Down

0 comments on commit 91d2fa4

Please sign in to comment.