1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-01-19 17:03:39 +00:00
Files
directory-connector/src/models/ldapConfiguration.ts
2020-05-19 12:16:30 -04:00

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;
}