sorting lists

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2024-10-20 20:06:35 +02:00
parent db07cf1301
commit 8711b3e491
4 changed files with 21 additions and 16 deletions

View File

@@ -182,7 +182,7 @@ public class ClientController extends Controller {
if (optUser.isEmpty()) return invalidSessionUser(ex);
if (!optUser.get().hasPermission(MANAGE_CLIENTS)) return sendEmptyResponse(HTTP_FORBIDDEN, ex);
var json = new JSONObject();
clients.listClients().stream().sorted(Comparator.comparing(Client::name)).forEach(client -> json.put(client.id(), client.map()));
clients.listClients().forEach(client -> json.put(client.id(), client.map()));
return sendContent(ex, json);
}

View File

@@ -187,7 +187,7 @@ public class UserController extends Controller {
private boolean list(HttpExchange ex, User user) throws IOException {
if (!user.hasPermission(MANAGE_USERS)) return sendEmptyResponse(HTTP_FORBIDDEN, ex);
var json = new JSONObject();
users.list().stream().sorted(Comparator.comparing(User::username)).forEach(u -> json.put(u.uuid(), u.map(false)));
users.list().forEach(u -> json.put(u.uuid(), u.map(false)));
return sendContent(ex, json);
}