test #125

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

View File

@ -23,9 +23,8 @@ class CreatorAdminCategoryRepository(private val queryFactory: JPAQueryFactory)
.and(audioContent.member.id.eq(memberId))
.and(audioContent.isActive.isTrue.or(audioContent.releaseDate.isNotNull))
.and(audioContent.title.contains(searchWord))
.and(categoryContent.category.id.ne(categoryId))
.and(categoryContent.category.id.eq(categoryId))
)
.groupBy(audioContent.id)
.fetch()
}