Compare commits

..

2 Commits

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()
}