커뮤니티 게시물 조회 API - 활성화 된 게시물만 불러오기
This commit is contained in:
parent
024b8ce872
commit
e48fcc9d25
|
@ -38,6 +38,7 @@ class CreatorCommunityQueryRepositoryImpl(private val queryFactory: JPAQueryFact
|
|||
isAdult: Boolean
|
||||
): List<CreatorCommunity> {
|
||||
var where = creatorCommunity.member.id.eq(creatorId)
|
||||
.and(creatorCommunity.isActive.isTrue)
|
||||
|
||||
if (!isAdult) {
|
||||
where = where.and(creatorCommunity.isAdult.isFalse)
|
||||
|
|
Loading…
Reference in New Issue