From 23d93f69d4e939f9678c9405c4d720379dc7155d Mon Sep 17 00:00:00 2001 From: LD-Reborn Date: Sun, 26 Oct 2025 16:55:35 +0100 Subject: [PATCH] Removed unused LDAP data retrieval --- src/Controllers/HomeController.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Controllers/HomeController.cs b/src/Controllers/HomeController.cs index 3f8e77e..50d2f3e 100644 --- a/src/Controllers/HomeController.cs +++ b/src/Controllers/HomeController.cs @@ -32,9 +32,7 @@ public class HomeController : Controller [HttpGet("Assets")] public async Task Assets() { - IEnumerable users = await _ldap.ListUsersAsync(); IEnumerable assets = await _ldap.ListDeviceAsync(); - IEnumerable locations = await _ldap.ListLocationsAsync(); List assetsTableViewModels = []; foreach (AssetModel asset in assets) {