mirror of
https://github.com/bitwarden/directory-connector
synced 2026-01-19 17:03:39 +00:00
19 lines
391 B
TypeScript
19 lines
391 B
TypeScript
export class LdapConfiguration {
|
|
ssl = false;
|
|
startTls = false;
|
|
tlsCaPath: string;
|
|
sslAllowUnauthorized = false;
|
|
sslCertPath: string;
|
|
sslKeyPath: string;
|
|
sslCaPath: string;
|
|
hostname: string;
|
|
port = 389;
|
|
domain: string;
|
|
rootPath: string;
|
|
currentUser = false;
|
|
username: string;
|
|
password: string;
|
|
ad = true;
|
|
pagedSearch = true;
|
|
}
|