콘텐츠 메인 콘텐츠 탭 - 채널별 추천 단편

- 좋아요 개수를 기준으로 내림차순 정렬하도록 수정
This commit is contained in:
2025-02-25 23:42:23 +09:00
parent 2e05b25c41
commit 4b1c2e36ed
4 changed files with 49 additions and 4 deletions

View File

@@ -193,6 +193,10 @@ class RankingService(
return repository.fetchCreatorContentBySalesCountTop4(creatorId, isAdult, theme)
}
fun fetchCreatorContentByLikeCountTop4(creatorId: Long, isAdult: Boolean): List<GetAudioContentRankingItem> {
return repository.fetchCreatorContentByLikeCountTop4(creatorId, isAdult)
}
fun fetchCreatorBySeriesRevenueRankTop20(
memberId: Long,
startDate: LocalDateTime,