feat(home): 포인트 사용 가능 콘텐츠 리스트 추가

This commit is contained in:
2025-11-10 13:58:17 +09:00
parent eab7dc4521
commit e24e8372a8
4 changed files with 30 additions and 4 deletions

View File

@@ -990,7 +990,8 @@ class AudioContentService(
limit: Long = 20,
isFree: Boolean = false,
isAdult: Boolean = false,
orderByRandom: Boolean = false
orderByRandom: Boolean = false,
isPointAvailableOnly: Boolean = false
): List<AudioContentMainItem> {
return repository.getLatestContentByTheme(
theme = theme,
@@ -999,7 +1000,8 @@ class AudioContentService(
limit = limit,
isFree = isFree,
isAdult = isAdult,
orderByRandom = orderByRandom
orderByRandom = orderByRandom,
isPointAvailableOnly = isPointAvailableOnly
)
}
}