Skip to content

Commit

Permalink
fix : 나의 매칭 리스트 쿼리 조건 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
huncozyboy committed Feb 5, 2025
1 parent 983c8cc commit ffc2850
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 ffc2850

Please sign in to comment.