mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
refactor(editor): Move editor-ui and design-system to frontend dir (no-changelog) (#13564)
This commit is contained in:
34
packages/frontend/editor-ui/src/api/ldap.ts
Normal file
34
packages/frontend/editor-ui/src/api/ldap.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
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 await makeRestApiRequest(context, 'GET', '/ldap/config');
|
||||
}
|
||||
|
||||
export async function testLdapConnection(context: IRestApiContext): Promise<{}> {
|
||||
return await makeRestApiRequest(context, 'POST', '/ldap/test-connection');
|
||||
}
|
||||
|
||||
export async function updateLdapConfig(
|
||||
context: IRestApiContext,
|
||||
adConfig: ILdapConfig,
|
||||
): Promise<ILdapConfig> {
|
||||
return await makeRestApiRequest(
|
||||
context,
|
||||
'PUT',
|
||||
'/ldap/config',
|
||||
adConfig as unknown as IDataObject,
|
||||
);
|
||||
}
|
||||
|
||||
export async function runLdapSync(context: IRestApiContext, data: IDataObject): Promise<{}> {
|
||||
return await makeRestApiRequest(context, 'POST', '/ldap/sync', data as unknown as IDataObject);
|
||||
}
|
||||
|
||||
export async function getLdapSynchronizations(
|
||||
context: IRestApiContext,
|
||||
pagination: { page: number },
|
||||
): Promise<ILdapSyncData[]> {
|
||||
return await makeRestApiRequest(context, 'GET', '/ldap/sync', pagination);
|
||||
}
|
||||
Reference in New Issue
Block a user