Implementierung des Imports von Benutzern und Gruppen aus Active Directory im Angular-Frontend.

This commit is contained in:
Developer 02
2024-03-11 15:31:36 +01:00
parent df9bc33795
commit 2e26342be6
292 changed files with 599 additions and 221 deletions

View File

@@ -5,13 +5,13 @@ export interface User {
username: string;
shortname?: string;
email?: string;
language: string;
language?: string;
comment?: string;
deleted?: boolean;
dateFormat: string;
dateFormat?: string;
addedWho?: string;
changedWho?: string;
active: boolean;
active?: boolean;
}
@@ -71,12 +71,10 @@ export interface DirGroup {
}
export interface DirUser {
guid: string;
sId: string;
employeeId: string;
samAccountName: string;
givenName: string;
middleName: string;
middleName?: string;
surname: string;
emailAddress: string;
addedWho?: string;
}