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 return queryFactory
.selectFrom(audioContentCuration) .selectFrom(audioContentCuration)
.where(where) .where(where)
.offset(0)
.limit(15)
.orderBy(audioContentCuration.orders.asc()) .orderBy(audioContentCuration.orders.asc())
.fetch() .fetch()
} }