test #125

Merged
klaus merged 14 commits from test into main 2024-02-07 09:39:10 +00:00
1 changed files with 3 additions and 0 deletions
Showing only changes of commit 113d29fab0 - Show all commits

View File

@ -71,6 +71,9 @@ class CreatorAdminCategoryRepository(private val queryFactory: JPAQueryFactory)
.and(audioContent.member.id.eq(memberId))
.and(audioContent.isActive.isTrue.or(audioContent.releaseDate.isNotNull))
)
.orderBy(categoryContent.updatedAt.desc())
.offset(offset)
.limit(limit)
.fetch()
}
}