test #267

Merged
klaus merged 3 commits from test into main 2025-02-20 18:24:36 +00:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit 8b731999a7 - Show all commits

View File

@ -130,6 +130,7 @@ class AudioContentMainTabSeriesService(
)
)
}
.filter { it.items.isNotEmpty() }
return GetContentMainTabSeriesResponse(
contentBannerList = contentBannerList,

View File

@ -231,9 +231,10 @@ class ContentSeriesQueryRepositoryImpl(
.and(blockMember.blockedMember.id.eq(memberId))
var where = series.isActive.isTrue
.and(audioContentCuration.id.eq(curationId))
.and(member.isActive.isTrue)
.and(member.role.eq(MemberRole.CREATOR))
.and(audioContentCuration.id.eq(curationId))
.and(audioContentCurationItem.isActive.isTrue)
.and(blockMember.id.isNull)
if (!isAdult) {
@ -248,6 +249,7 @@ class ContentSeriesQueryRepositoryImpl(
.innerJoin(series.member, member)
.leftJoin(blockMember).on(blockMemberCondition)
.where(where)
.orderBy(audioContentCurationItem.orders.asc())
.fetch()
}
}