1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-24 04:04:29 +00:00

cleanup settings and set defautls for ldap ad

This commit is contained in:
Kyle Spearrin
2018-05-01 16:52:18 -04:00
parent 85aff3e75a
commit 179687490c
2 changed files with 14 additions and 9 deletions

View File

@@ -59,6 +59,11 @@ export class SettingsComponent implements OnInit, OnDestroy {
this.sync.emailPrefixAttribute = 'sAMAccountName';
this.sync.groupPath = 'CN=Users';
this.sync.userPath = 'CN=Users';
this.sync.memberAttribute = 'member';
this.sync.userObjectClass = 'person';
this.sync.groupObjectClass = 'group';
this.sync.userEmailAttribute = 'mail';
this.sync.groupNameAttribute = 'name';
}
await this.configurationService.saveDirectoryType(this.directory);