mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 20:37:29 -08:00
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
import type { ILdapConfig, ILdapSyncData, IRestApiContext } from '@/Interface';
|
|
import { makeRestApiRequest } from '@/utils/apiUtils';
|
|
import type { IDataObject } from 'n8n-workflow';
|
|
|
|
export async function getLdapConfig(context: IRestApiContext): Promise<ILdapConfig> {
|
|
return makeRestApiRequest(context, 'GET', '/ldap/config');
|
|
}
|
|
|
|
export async function testLdapConnection(context: IRestApiContext): Promise<{}> {
|
|
return makeRestApiRequest(context, 'POST', '/ldap/test-connection');
|
|
}
|
|
|
|
export async function updateLdapConfig(
|
|
context: IRestApiContext,
|
|
adConfig: ILdapConfig,
|
|
): Promise<ILdapConfig> {
|
|
return makeRestApiRequest(context, 'PUT', '/ldap/config', adConfig as unknown as IDataObject);
|
|
}
|
|
|
|
export async function runLdapSync(context: IRestApiContext, data: IDataObject): Promise<{}> {
|
|
return makeRestApiRequest(context, 'POST', '/ldap/sync', data as unknown as IDataObject);
|
|
}
|
|
|
|
export async function getLdapSynchronizations(
|
|
context: IRestApiContext,
|
|
pagination: { page: number },
|
|
): Promise<ILdapSyncData[]> {
|
|
return makeRestApiRequest(context, 'GET', '/ldap/sync', pagination);
|
|
}
|