관리자 - 푸시 발송
- 본인 인증 여부에 따라 푸시 메시지를 발송할 수 있도록 isAuth 플래그 추가
This commit is contained in:
parent
84102bb95a
commit
11bb799bd5
|
@ -101,9 +101,9 @@ class MemberQueryRepositoryImpl(
|
||||||
|
|
||||||
if (isAuth != null) {
|
if (isAuth != null) {
|
||||||
where = if (isAuth) {
|
where = if (isAuth) {
|
||||||
where.and(member.auth.isNotNull)
|
where.and(auth.isNotNull)
|
||||||
} else {
|
} else {
|
||||||
where.and(member.auth.isNull)
|
where.and(auth.isNull)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -289,9 +289,9 @@ class MemberQueryRepositoryImpl(
|
||||||
|
|
||||||
if (isAuth != null) {
|
if (isAuth != null) {
|
||||||
where = if (isAuth) {
|
where = if (isAuth) {
|
||||||
where.and(member.auth.isNotNull)
|
where.and(auth.isNotNull)
|
||||||
} else {
|
} else {
|
||||||
where.and(member.auth.isNull)
|
where.and(auth.isNull)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue