Integration des Active Directory Controllers und Active Directory Service abgeschlossen.

This commit is contained in:
Developer 02
2024-03-11 08:48:40 +01:00
parent 58f87e2be5
commit df9bc33795
420 changed files with 2611 additions and 4118 deletions

View File

@@ -57,7 +57,7 @@ export interface UserRep {
guid?: number,
userId: number,
repGroupId?: number,
rightGroupId:number,
rightGroupId: number,
addedWho: string,
repUserId?: number,
user?: User,
@@ -66,6 +66,17 @@ export interface UserRep {
repUser?: User
}
export interface ADGroup {
export interface DirGroup {
samaccountname: Array<string>;
}
export interface DirUser {
guid: string;
sId: string;
employeeId: string;
samAccountName: string;
givenName: string;
middleName: string;
surname: string;
emailAddress: string;
}