Compare commits

..

No commits in common. "5b237a154739a9200944b30d81b29934900a63b3" and "2e37990d87c75d54f6b53c5f56987b960c16547a" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -198,7 +198,6 @@ class ExplorerQueryRepository(
member.role.eq(MemberRole.CREATOR)
.and(member.isActive.isTrue)
.and(auth.gender.eq(gender))
.and(member.id.notIn(3, 351))
)
.orderBy(caseExpression.asc(), randomExpression)
.offset(0)

View File

@ -105,7 +105,7 @@ class ExplorerService(
val femaleCreatorSection = GetExplorerSectionResponse(
title = "여자 크리에이터",
coloredTitle = "여자",
color = "ffa517",
color = "ff5c49",
creators = queryRepository
.findCreatorByGender(0)
.filter { !memberService.isBlocked(blockedMemberId = member.id!!, memberId = it.id!!) }