콘텐츠 메인

- 모닝콜 탭 API
This commit is contained in:
2025-02-07 23:45:44 +09:00
parent c5539bc7e3
commit d1579126f3
9 changed files with 144 additions and 13 deletions

View File

@@ -44,7 +44,8 @@ class RankingService(
endDate: LocalDateTime,
offset: Long = 0,
limit: Long = 12,
sortType: String = "매출"
sortType: String = "매출",
theme: String = ""
): List<GetAudioContentRankingItem> {
return repository.getAudioContentRanking(
memberId = memberId,
@@ -53,7 +54,8 @@ class RankingService(
endDate = endDate,
offset = offset,
limit = limit,
sortType = sortType
sortType = sortType,
theme = theme
)
}