parent
0aaac97915
commit
738d7fba2a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue