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 9a30dd6de5 - Show all commits

View File

@ -25,6 +25,7 @@ class CreatorAdminCategoryRepository(private val queryFactory: JPAQueryFactory)
.and(audioContent.title.contains(searchWord)) .and(audioContent.title.contains(searchWord))
.and(categoryContent.category.id.ne(categoryId)) .and(categoryContent.category.id.ne(categoryId))
) )
.groupBy(audioContent.id)
.fetch() .fetch()
} }