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 1 deletions
Showing only changes of commit e3cf7fbfa0 - Show all commits

View File

@ -39,7 +39,7 @@ class CategoryQueryRepositoryImpl(private val queryFactory: JPAQueryFactory) : C
return queryFactory
.select(QGetCategoryListResponse(category.id, category.title))
.from(category)
.where(category.member.id.eq(creatorId))
.where(category.member.id.eq(creatorId).and(category.isActive.isTrue))
.fetch()
}
}