Merge branch '21225-project-panel-tabs' into main. Closes #21225
[arvados.git] / services / workbench2 / src / store / project-panel / project-panel-action-bind.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { bindDataExplorerActions } from "store/data-explorer/data-explorer-action";
6
7 // These are split into a separate file to avoid circular imports causing
8 // invariant violations with unit tests
9
10 export const PROJECT_PANEL_DATA_ID = "projectPanelData";
11 export const projectPanelDataActions = bindDataExplorerActions(PROJECT_PANEL_DATA_ID);
12
13 export const PROJECT_PANEL_RUN_ID = "projectPanelRun";
14 export const projectPanelRunActions = bindDataExplorerActions(PROJECT_PANEL_RUN_ID);