parent
c63949992f
commit
fc6916fc2d
|
@ -351,6 +351,10 @@ class ExplorerQueryRepository(
|
||||||
where = where.and(liveRoom.isAdult.isFalse)
|
where = where.and(liveRoom.isAdult.isFalse)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (userMember.role == MemberRole.CREATOR) {
|
||||||
|
where = where.and(liveRoom.isAvailableJoinCreator.isTrue)
|
||||||
|
}
|
||||||
|
|
||||||
val result = mutableListOf<LiveRoom>()
|
val result = mutableListOf<LiveRoom>()
|
||||||
|
|
||||||
if (offset == 0L) {
|
if (offset == 0L) {
|
||||||
|
|
Loading…
Reference in New Issue