Added more criteria to LDAPHealthChecks

This commit is contained in:
2025-10-03 21:17:02 +02:00
parent 3a97bd6024
commit 79f130dfaf

View File

@@ -19,6 +19,9 @@ public class DatabaseHealthCheck : IHealthCheck
try try
{ {
await _ldapService.ListUsersAsync(); await _ldapService.ListUsersAsync();
await _ldapService.ListDeviceAsync();
await _ldapService.ListGroupsAsync(["cn", "description"]);
await _ldapService.ListLocationsAsync();
} }
catch (Exception ex) catch (Exception ex)
{ {