feat(editor): add folder breadcrumb

This commit is contained in:
Ali BARIN
2025-02-11 11:58:58 +00:00
parent 8e7d06b5dc
commit f7cf75b5a7
4 changed files with 71 additions and 27 deletions

View File

@@ -47,6 +47,7 @@ export const APP_FLOWS_FOR_CONNECTION = (appKey, connectionId) =>
`/app/${appKey}/flows?connectionId=${connectionId}`;
export const APP_FLOWS = (appKey) => `/app/${appKey}/flows`;
export const FOLDER_FLOWS = (folderId) => `/flows?folderId=${folderId}`;
export const APP_FLOWS_PATTERN = '/app/:appKey/flows';
export const EDITOR = '/editor';
export const CREATE_FLOW = '/editor/create';