test #94

Merged
klaus merged 4 commits from test into main 2023-11-24 07:03:11 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 11bb799bd5 - Show all commits

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)
}
}