Compare commits

...

2 Commits

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