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 0 deletions
Showing only changes of commit 525f837e21 - Show all commits

View File

@ -23,6 +23,7 @@ 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))
)
.fetch()
}