feat: LDAP-Test zeigt User-Tabelle mit Univention-UCS-Support

Nach erfolgreichem Verbindungstest werden bis zu 50 Benutzer (UID,
Name, E-Mail) in einer scrollbaren Tabelle angezeigt. Unterstützt
mailPrimaryAddress (Univention UCS) als Fallback für mail sowie
inetOrgPerson objectClass.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
sysops
2026-03-20 11:23:12 +01:00
parent 30c6694dff
commit 2da61689ea
3 changed files with 118 additions and 22 deletions
+8
View File
@@ -642,12 +642,20 @@ export interface LDAPConfig {
updated_by?: string;
}
export interface LDAPTestUser {
dn: string;
uid: string;
display_name: string;
mail: string;
}
export interface LDAPTestResult {
ok: boolean;
message: string;
latency_ms: number;
server_info: string;
users_found: number;
users: LDAPTestUser[];
error_detail: string;
}