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

@@ -19,6 +19,19 @@ class AudioContentThemeService(
return queryRepository.getActiveThemes()
}
@Transactional(readOnly = true)
fun getActiveThemeOfContent(
isAdult: Boolean = false,
isFree: Boolean = false,
contentType: ContentType
): List<String> {
return queryRepository.getActiveThemeOfContent(
isAdult = isAdult,
isFree = isFree,
contentType = contentType
)
}
@Transactional(readOnly = true)
fun getContentByTheme(
themeId: Long,