feat(content-sort-type): getLatestContentByTheme(테마별 콘텐츠 조회)시 정렬 타입 추가

This commit is contained in:
2025-11-20 00:26:24 +09:00
parent b6eb13df06
commit 88d90eec2f
3 changed files with 24 additions and 2 deletions

View File

@@ -988,6 +988,7 @@ class AudioContentService(
contentType: ContentType,
offset: Long = 0,
limit: Long = 20,
sortType: SortType = SortType.NEWEST,
isFree: Boolean = false,
isAdult: Boolean = false,
orderByRandom: Boolean = false,
@@ -998,6 +999,7 @@ class AudioContentService(
contentType = contentType,
offset = offset,
limit = limit,
sortType = sortType,
isFree = isFree,
isAdult = isAdult,
orderByRandom = orderByRandom,