Compare commits
No commits in common. "4e84678a3cca4410cbda4d59da52c7f5ba680740" and "476e4e8eb1b07e1fefbdc36832e4a793aee3128f" have entirely different histories.
4e84678a3c
...
476e4e8eb1
|
@ -54,7 +54,6 @@ class ExplorerQueryRepository(
|
||||||
.where(
|
.where(
|
||||||
creatorFollowing.isActive.isTrue
|
creatorFollowing.isActive.isTrue
|
||||||
.and(creatorFollowing.creator.id.eq(creatorId))
|
.and(creatorFollowing.creator.id.eq(creatorId))
|
||||||
.and(creatorFollowing.member.isActive.isTrue)
|
|
||||||
)
|
)
|
||||||
.fetch()
|
.fetch()
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,8 +58,8 @@ class LiveRoomQueryRepositoryImpl(private val queryFactory: JPAQueryFactory) : L
|
||||||
.offset(offset)
|
.offset(offset)
|
||||||
.limit(limit)
|
.limit(limit)
|
||||||
.orderBy(
|
.orderBy(
|
||||||
quarterLiveRankings.totalCan.coalesce(0).desc(),
|
quarterLiveRankings.totalCan.desc(),
|
||||||
quarterLiveRankings.totalParticipants.coalesce(0).desc(),
|
quarterLiveRankings.totalParticipants.desc(),
|
||||||
liveRoom.beginDateTime.desc(),
|
liveRoom.beginDateTime.desc(),
|
||||||
liveRoom.member.createdAt.desc()
|
liveRoom.member.createdAt.desc()
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue