mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-15 07:43:27 +00:00
14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
import { DirectoryType } from '../enums/directoryType';
|
|
|
|
export class LdapConfiguration {
|
|
ssl: boolean = false;
|
|
hostname: string;
|
|
port: number = 389;
|
|
domain: string;
|
|
rootPath: string;
|
|
currentUser: boolean = false;
|
|
username: string;
|
|
password: string;
|
|
ad: boolean = true;
|
|
}
|