UNPKG

n8n

Version:

n8n Workflow Automation Tool

14 lines (13 loc) 710 B
import { LdapConfiguration } from './types'; import { LdapService } from './ldap.service.ee'; import { EventService } from '../events/event.service'; export declare class LdapController { private readonly ldapService; private readonly eventService; constructor(ldapService: LdapService, eventService: EventService); getConfig(): Promise<import("./types").LdapConfig>; testConnection(): Promise<void>; updateConfig(req: LdapConfiguration.Update): Promise<import("./types").LdapConfig>; getLdapSync(req: LdapConfiguration.GetSync): Promise<import("../databases/entities/AuthProviderSyncHistory").AuthProviderSyncHistory[]>; syncLdap(req: LdapConfiguration.Sync): Promise<void>; }