콘텐츠 메인 다시듣기, ASMR

- 채널별 콘텐츠 조회 API 추가
This commit is contained in:
2025-02-15 02:01:59 +09:00
parent 34452525d4
commit 3d1716d847
9 changed files with 236 additions and 6 deletions

View File

@@ -189,12 +189,20 @@ class RankingService(
return repository.fetchCreatorByContentRevenueRankTop20(memberId, startDate, endDate)
}
fun fetchCreatorContentBySalesTop2(creatorId: Long, isAdult: Boolean): List<GetAudioContentRankingItem> {
return repository.fetchCreatorContentBySalesTop2(creatorId, isAdult)
fun fetchCreatorContentBySalesTop2(
creatorId: Long,
isAdult: Boolean,
theme: String = ""
): List<GetAudioContentRankingItem> {
return repository.fetchCreatorContentBySalesTop2(creatorId, isAdult, theme)
}
fun fetchCreatorContentBySalesCountTop2(creatorId: Long, isAdult: Boolean): List<GetAudioContentRankingItem> {
return repository.fetchCreatorContentBySalesCountTop2(creatorId, isAdult)
fun fetchCreatorContentBySalesCountTop2(
creatorId: Long,
isAdult: Boolean,
theme: String = ""
): List<GetAudioContentRankingItem> {
return repository.fetchCreatorContentBySalesCountTop2(creatorId, isAdult, theme)
}
fun fetchCreatorBySeriesRevenueRankTop20(