This commit is contained in:
2026-04-18 13:34:20 +03:00
parent 7cc1ff9555
commit 0bca35d015
2 changed files with 0 additions and 8 deletions

View File

@@ -73,11 +73,9 @@ public class UserService {
.execute(Tuple.of(loginOrEmail, loginOrEmail))
.map(rows -> {
if (rows.size() == 0) {
System.out.println("User not found: " + loginOrEmail);
return null;
}
Row row = rows.iterator().next();
System.out.println("User found, active=" + row.getBoolean("active"));
return toJson(row);
});
}