feat: 메인 홈

- API 추가
This commit is contained in:
2025-07-10 15:31:41 +09:00
parent a8da17162a
commit 22fc8b22b8
19 changed files with 799 additions and 30 deletions

View File

@@ -938,4 +938,22 @@ class AudioContentService(
return GenerateUrlResponse(contentUrl)
}
fun getLatestContentByTheme(
theme: List<String>,
contentType: ContentType,
offset: Long = 0,
limit: Long = 20,
isFree: Boolean = false,
isAdult: Boolean = false
): List<AudioContentMainItem> {
return repository.getLatestContentByTheme(
theme = theme,
contentType = contentType,
offset = offset,
limit = limit,
isFree = isFree,
isAdult = isAdult
)
}
}