38 lines
1.8 KiB
TypeScript
38 lines
1.8 KiB
TypeScript
export const CONNECTIONS = '/connections';
|
|
export const EXECUTIONS = '/executions';
|
|
export const EXECUTION_PATTERN = '/executions/:executionId';
|
|
export const EXECUTION = (executionId: string): string => `/executions/${executionId}`;
|
|
|
|
export const LOGIN = '/login';
|
|
|
|
export const APPS = '/apps';
|
|
export const NEW_APP_CONNECTION = '/apps/new';
|
|
export const APP = (appKey: string): string => `/app/${appKey}`;
|
|
export const APP_PATTERN = '/app/:appKey';
|
|
export const APP_CONNECTIONS = (appKey: string): string => `/app/${appKey}/connections`;
|
|
export const APP_CONNECTIONS_PATTERN = '/app/:appKey/connections';
|
|
export const APP_ADD_CONNECTION = (appKey: string): string => `/app/${appKey}/connections/add`;
|
|
export const APP_ADD_CONNECTION_PATTERN = '/app/:appKey/connections/add';
|
|
export const APP_RECONNECT_CONNECTION = (appKey: string, connectionId: string): string => `/app/${appKey}/connections/${connectionId}/reconnect`;
|
|
export const APP_RECONNECT_CONNECTION_PATTERN = '/app/:appKey/connections/:connectionId/reconnect';
|
|
export const APP_FLOWS = (appKey: string): string => `/app/${appKey}/flows`;
|
|
export const APP_FLOWS_PATTERN = '/app/:appKey/flows';
|
|
|
|
export const EDITOR = '/editor';
|
|
export const CREATE_FLOW ='/editor/create';
|
|
export const CREATE_FLOW_WITH_APP = (appKey: string) => `/editor/create?appKey=${appKey}`;
|
|
export const FLOW_EDITOR = (flowId: string): string => `/editor/${flowId}`;
|
|
|
|
export const FLOWS = '/flows';
|
|
// TODO: revert this back to /flows/:flowId once we have a proper single flow page
|
|
export const FLOW = (flowId: string): string => `/editor/${flowId}`;
|
|
export const FLOW_PATTERN = '/flows/:flowId';
|
|
|
|
export const SETTINGS = '/settings';
|
|
export const SETTINGS_DASHBOARD = SETTINGS;
|
|
export const PROFILE = 'profile';
|
|
export const UPDATES = '/updates';
|
|
export const SETTINGS_PROFILE = `${SETTINGS}/${PROFILE}`;
|
|
|
|
export const DASHBOARD = FLOWS;
|