관리자 - 푸시 발송

- 본인 인증 여부에 따라 푸시 메시지를 발송할 수 있도록 isAuth 플래그 추가
This commit is contained in:
Klaus 2023-11-24 15:52:47 +09:00
parent 84102bb95a
commit 11bb799bd5
1 changed files with 4 additions and 4 deletions

View File

@ -101,9 +101,9 @@ class MemberQueryRepositoryImpl(
if (isAuth != null) {
where = if (isAuth) {
where.and(member.auth.isNotNull)
where.and(auth.isNotNull)
} else {
where.and(member.auth.isNull)
where.and(auth.isNull)
}
}
@ -289,9 +289,9 @@ class MemberQueryRepositoryImpl(
if (isAuth != null) {
where = if (isAuth) {
where.and(member.auth.isNotNull)
where.and(auth.isNotNull)
} else {
where.and(member.auth.isNull)
where.and(auth.isNull)
}
}