18315: Adds file upload test proving that the UI is correctly updated.
[arvados-workbench2.git] / src / plugins.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { PluginConfig } from 'common/plugintypes';
6
7 export const pluginConfig: PluginConfig = {
8     centerPanelList: [],
9     sidePanelCategories: [],
10     dialogs: [],
11     navigateToHandlers: [],
12     locationChangeHandlers: [],
13     appBarLeft: undefined,
14     appBarMiddle: undefined,
15     appBarRight: undefined,
16     accountMenuList: [],
17     enableNewButtonMatchers: [],
18     newButtonMenuList: [],
19     middlewares: []
20 };
21
22 // Starting here, import and register your Workbench 2 plugins. //
23
24 // import { register as blankUIPluginRegister } from 'plugins/blank/index';
25 // import { register as examplePluginRegister } from 'plugins/example/index';
26 // import { register as rootRedirectRegister } from 'plugins/root-redirect/index';
27
28 // blankUIPluginRegister(pluginConfig);
29 // examplePluginRegister(pluginConfig);
30 // rootRedirectRegister(pluginConfig, exampleRoutePath);