Compare commits
No commits in common. "5b237a154739a9200944b30d81b29934900a63b3" and "2e37990d87c75d54f6b53c5f56987b960c16547a" have entirely different histories.
5b237a1547
...
2e37990d87
|
@ -198,7 +198,6 @@ class ExplorerQueryRepository(
|
||||||
member.role.eq(MemberRole.CREATOR)
|
member.role.eq(MemberRole.CREATOR)
|
||||||
.and(member.isActive.isTrue)
|
.and(member.isActive.isTrue)
|
||||||
.and(auth.gender.eq(gender))
|
.and(auth.gender.eq(gender))
|
||||||
.and(member.id.notIn(3, 351))
|
|
||||||
)
|
)
|
||||||
.orderBy(caseExpression.asc(), randomExpression)
|
.orderBy(caseExpression.asc(), randomExpression)
|
||||||
.offset(0)
|
.offset(0)
|
||||||
|
|
|
@ -105,7 +105,7 @@ class ExplorerService(
|
||||||
val femaleCreatorSection = GetExplorerSectionResponse(
|
val femaleCreatorSection = GetExplorerSectionResponse(
|
||||||
title = "여자 크리에이터",
|
title = "여자 크리에이터",
|
||||||
coloredTitle = "여자",
|
coloredTitle = "여자",
|
||||||
color = "ffa517",
|
color = "ff5c49",
|
||||||
creators = queryRepository
|
creators = queryRepository
|
||||||
.findCreatorByGender(0)
|
.findCreatorByGender(0)
|
||||||
.filter { !memberService.isBlocked(blockedMemberId = member.id!!, memberId = it.id!!) }
|
.filter { !memberService.isBlocked(blockedMemberId = member.id!!, memberId = it.id!!) }
|
||||||
|
|
Loading…
Reference in New Issue