test #1

Merged
klaus merged 94 commits from test into main 2023-08-16 02:30:37 +00:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit 018a4a95a2 - Show all commits

View File

@ -112,6 +112,7 @@ class LiveRoomQueryRepositoryImpl(private val queryFactory: JPAQueryFactory) : L
override fun getLiveRoom(id: Long): LiveRoom? {
return queryFactory
.selectFrom(liveRoom)
.innerJoin(liveRoom.member, member)
.where(
liveRoom.id.eq(id)
.and(liveRoom.isActive.isTrue)