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 4a7e684606 - Show all commits

View File

@ -37,6 +37,7 @@ class LiveRoomVisitQueryRepositoryImpl(private val queryFactory: JPAQueryFactory
return queryFactory
.selectFrom(liveRoomVisit)
.innerJoin(liveRoomVisit.room, liveRoom)
.innerJoin(liveRoomVisit.member, member)
.where(member.id.eq(memberId))
.orderBy(liveRoomVisit.updatedAt.desc())
.fetchFirst()