콘텐츠 메인 - 큐레이션 개수 15개만 노출

This commit is contained in:
Klaus 2023-11-06 17:04:59 +09:00
parent 1d877255ac
commit 58a57c9a0e
1 changed files with 2 additions and 0 deletions

View File

@ -400,6 +400,8 @@ class AudioContentQueryRepositoryImpl(private val queryFactory: JPAQueryFactory)
return queryFactory
.selectFrom(audioContentCuration)
.where(where)
.offset(0)
.limit(15)
.orderBy(audioContentCuration.orders.asc())
.fetch()
}