관리자 - 푸시 발송
- 본인 인증 여부에 따라 푸시 메시지를 발송할 수 있도록 isAuth 플래그 추가
This commit is contained in:
@@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user