라이브 생성, 시작

- 푸시 발송 대상 조회 로직 수정
This commit is contained in:
Klaus 2024-02-05 15:31:34 +09:00
parent 720ee63505
commit 0aaac97915
1 changed files with 6 additions and 6 deletions

View File

@ -147,8 +147,8 @@ class MemberQueryRepositoryImpl(
.from(creatorFollowing)
.innerJoin(creatorFollowing.creator, creator)
.innerJoin(creatorFollowing.member, member)
.innerJoin(member.notification, memberNotification)
.leftJoin(member.auth, auth)
.innerJoin(creatorFollowing.member.notification, memberNotification)
.leftJoin(creatorFollowing.member.auth, auth)
.where(where)
.fetch()
.toSet()
@ -186,8 +186,8 @@ class MemberQueryRepositoryImpl(
.from(creatorFollowing)
.innerJoin(creatorFollowing.creator, creator)
.innerJoin(creatorFollowing.member, member)
.innerJoin(member.notification, memberNotification)
.leftJoin(member.auth, auth)
.innerJoin(creatorFollowing.member.notification, memberNotification)
.leftJoin(creatorFollowing.member.auth, auth)
.where(where)
.fetch()
@ -211,8 +211,8 @@ class MemberQueryRepositoryImpl(
.select(liveReservation.member.pushToken)
.from(liveReservation)
.innerJoin(liveReservation.member, member)
.innerJoin(member.notification, memberNotification)
.leftJoin(member.auth, auth)
.innerJoin(liveReservation.member.notification, memberNotification)
.leftJoin(liveReservation.member.auth, auth)
.where(where)
.fetch()