라이브 생성, 시작
- 푸시 발송 대상 조회 로직 수정
This commit is contained in:
@@ -139,7 +139,7 @@ class MemberQueryRepositoryImpl(
|
||||
.or(member.id.eq(4).and(member.pushToken.isNotNull))
|
||||
|
||||
if (isAuth) {
|
||||
where = where.and(member.auth.isNotNull)
|
||||
where = where.and(auth.isNotNull)
|
||||
}
|
||||
|
||||
return queryFactory
|
||||
@@ -178,7 +178,7 @@ class MemberQueryRepositoryImpl(
|
||||
.or(creatorFollowing.member.id.eq(4).and(member.pushToken.isNotNull))
|
||||
|
||||
if (isAuth) {
|
||||
where = where.and(creatorFollowing.member.auth.isNotNull)
|
||||
where = where.and(auth.isNotNull)
|
||||
}
|
||||
|
||||
val followingMemberPushToken = queryFactory
|
||||
@@ -204,7 +204,7 @@ class MemberQueryRepositoryImpl(
|
||||
)
|
||||
|
||||
if (isAuth) {
|
||||
where = where.and(liveReservation.member.auth.isNotNull)
|
||||
where = where.and(auth.isNotNull)
|
||||
}
|
||||
|
||||
val reservationMemberPushToken = queryFactory
|
||||
@@ -243,7 +243,7 @@ class MemberQueryRepositoryImpl(
|
||||
.or(member.id.eq(4).and(member.pushToken.isNotNull))
|
||||
|
||||
if (isAuth) {
|
||||
where = where.and(member.auth.isNotNull)
|
||||
where = where.and(auth.isNotNull)
|
||||
}
|
||||
|
||||
return queryFactory
|
||||
|
Reference in New Issue
Block a user