mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-30 08:17:06 +02:00
* feat(editor): Version control paywall (WIP) * fix(editor): remove version control docs link * feat(editor): Adding version control settings (WIP) * feat(editor): Adding version control settings (WIP) * fix(editor): use rest api root path in version control * fix(editor): adding preferences * fix(editor): adding preferences * fix(editor): change store action name
37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
import type { IRestApiContext, VersionControlPreferences } from '@/Interface';
|
|
import { makeRestApiRequest } from '@/utils';
|
|
import type { IDataObject } from 'n8n-workflow';
|
|
|
|
const versionControlApiRoot = '/version-control';
|
|
|
|
export const initSsh = (context: IRestApiContext, data: IDataObject): Promise<string> => {
|
|
return makeRestApiRequest(context, 'POST', `${versionControlApiRoot}/init-ssh`, data);
|
|
};
|
|
|
|
export const initRepository = (
|
|
context: IRestApiContext,
|
|
): Promise<{ branches: string[]; currentBranch: string }> => {
|
|
return makeRestApiRequest(context, 'POST', `${versionControlApiRoot}/init-repository`);
|
|
};
|
|
|
|
export const sync = (context: IRestApiContext, data: IDataObject): Promise<void> => {
|
|
return makeRestApiRequest(context, 'POST', `${versionControlApiRoot}/push`, data);
|
|
};
|
|
|
|
export const getConfig = (
|
|
context: IRestApiContext,
|
|
): Promise<{ remoteRepository: string; name: string; email: string; currentBranch: string }> => {
|
|
return makeRestApiRequest(context, 'GET', `${versionControlApiRoot}/config`);
|
|
};
|
|
|
|
export const setPreferences = (
|
|
context: IRestApiContext,
|
|
preferences: Partial<VersionControlPreferences>,
|
|
): Promise<VersionControlPreferences> => {
|
|
return makeRestApiRequest(context, 'POST', `${versionControlApiRoot}/preferences`, preferences);
|
|
};
|
|
|
|
export const getPreferences = (context: IRestApiContext): Promise<VersionControlPreferences> => {
|
|
return makeRestApiRequest(context, 'GET', `${versionControlApiRoot}/preferences`);
|
|
};
|