콘텐츠 메인 무료 탭

- 콘텐츠 테마와 유저 테이블 데이터를 사용하므로 해당 테이블 조인 코드 추가
This commit is contained in:
Klaus 2025-02-18 01:59:18 +09:00
parent 308127d044
commit 43ea4191c3
1 changed files with 2 additions and 0 deletions

View File

@ -537,6 +537,8 @@ class RankingRepository(
)
)
.from(audioContent)
.innerJoin(audioContent.theme, audioContentTheme)
.innerJoin(audioContent.member, member)
.where(where)
.orderBy(audioContent.playCount.desc())
.offset(0)