Skip to content

Commit

Permalink
Merge pull request #115 from Leets-Official/fix/#114/나의-매칭-떠난-참가자-조회-수정
Browse files Browse the repository at this point in the history
Fix #115 나의 매칭 리스트 쿼리 조건 수정
  • Loading branch information
huncozyboy authored Feb 5, 2025
2 parents 983c8cc + ffc2850 commit a4a5be4
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public interface MatchingRoomRepository extends JpaRepository<MatchingRoom, Long
@Query("SELECT m.matchingRoom FROM MemberMatchingRoomChargingInfo m " +
"WHERE m.members = :user " +
"AND m.matchingRoom.matchingRoomStatus = 'ACTIVE' " +
"AND m.paymentStatus != 'LEFT'" +
"ORDER BY m.matchingRoom.id DESC")
Page<MatchingRoom> findByMemberInMatchingRoom(@Param("user") Members user, Pageable pageable);
}

0 comments on commit a4a5be4

Please sign in to comment.