라이브 생성, 시작

- 푸시 발송 대상 조회 로직 수정
This commit is contained in:
Klaus 2024-02-05 15:50:33 +09:00
parent 0aaac97915
commit 738d7fba2a
1 changed files with 4 additions and 4 deletions

View File

@ -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