라이브 예약현황 수정
This commit is contained in:
parent
a285e30108
commit
d2ae958847
|
@ -82,7 +82,8 @@ class LiveReservationQueryRepositoryImpl(private val queryFactory: JPAQueryFacto
|
||||||
.innerJoin(liveReservation.member, member)
|
.innerJoin(liveReservation.member, member)
|
||||||
.innerJoin(liveReservation.room, liveRoom)
|
.innerJoin(liveReservation.room, liveRoom)
|
||||||
.where(
|
.where(
|
||||||
liveReservation.isActive.eq(active)
|
liveRoom.isActive.isTrue
|
||||||
|
.and(liveReservation.isActive.eq(active))
|
||||||
.and(member.id.eq(memberId))
|
.and(member.id.eq(memberId))
|
||||||
)
|
)
|
||||||
.fetch()
|
.fetch()
|
||||||
|
|
Loading…
Reference in New Issue