test #258

Merged
klaus merged 26 commits from test into main 2025-02-14 18:09:12 +00:00
Showing only changes of commit b7610641e5 - Show all commits

View File

@@ -347,6 +347,7 @@ class RankingRepository(
.and(audioContent.isActive.isTrue) .and(audioContent.isActive.isTrue)
.and(audioContent.duration.isNotNull) .and(audioContent.duration.isNotNull)
.and(audioContent.limited.isNull) .and(audioContent.limited.isNull)
.and(audioContentTheme.isActive.isTrue)
.and(order.isActive.isTrue) .and(order.isActive.isTrue)
.and(member.id.eq(creatorId)) .and(member.id.eq(creatorId))
@@ -369,6 +370,7 @@ class RankingRepository(
) )
.from(order) .from(order)
.innerJoin(order.audioContent, audioContent) .innerJoin(order.audioContent, audioContent)
.innerJoin(audioContent.theme, audioContentTheme)
.innerJoin(audioContent.member, member) .innerJoin(audioContent.member, member)
.where(where) .where(where)
.groupBy(audioContent.id) .groupBy(audioContent.id)
@@ -384,6 +386,7 @@ class RankingRepository(
.and(audioContent.isActive.isTrue) .and(audioContent.isActive.isTrue)
.and(audioContent.duration.isNotNull) .and(audioContent.duration.isNotNull)
.and(audioContent.limited.isNull) .and(audioContent.limited.isNull)
.and(audioContentTheme.isActive.isTrue)
.and(order.isActive.isTrue) .and(order.isActive.isTrue)
.and(member.id.eq(creatorId)) .and(member.id.eq(creatorId))
@@ -406,6 +409,7 @@ class RankingRepository(
) )
.from(order) .from(order)
.innerJoin(order.audioContent, audioContent) .innerJoin(order.audioContent, audioContent)
.innerJoin(audioContent.theme, audioContentTheme)
.innerJoin(audioContent.member, member) .innerJoin(audioContent.member, member)
.where(where) .where(where)
.groupBy(audioContent.id) .groupBy(audioContent.id)