fix: 라이브 메인 API - 최근 종료된 라이브 #334

Merged
klaus merged 1 commits from test into main 2025-07-21 10:59:39 +00:00
1 changed files with 2 additions and 0 deletions
Showing only changes of commit efdb485a3b - Show all commits

View File

@ -395,6 +395,8 @@ class LiveRoomQueryRepositoryImpl(
subLiveRoom.isActive.isFalse
.and(subLiveRoom.channelName.isNotNull)
.and(subLiveRoom.member.role.eq(MemberRole.CREATOR))
.and(subLiveRoom.member.isActive.isTrue)
.and(subLiveRoom.updatedAt.goe(LocalDateTime.now().minusWeeks(2)))
)
.groupBy(subLiveRoom.member.id)