18368: Notification banner first implementation
[arvados-workbench2.git] / src / store / store.ts
index 94f110a09563ab17537b44445b964f650fef2ce5..899eb1cbaadd6d3da44fb752210e78f8256e36d0 100644 (file)
@@ -73,6 +73,7 @@ import { ALL_PROCESSES_PANEL_ID } from './all-processes-panel/all-processes-pane
 import { Config } from 'common/config';
 import { pluginConfig } from 'plugins';
 import { MiddlewareListReducer } from 'common/plugintypes';
+import { bannerReducer } from './banner/banner-reducer';
 
 declare global {
     interface Window {
@@ -187,6 +188,7 @@ export function configureStore(history: History, services: ServiceRepository, co
 
 const createRootReducer = (services: ServiceRepository) => combineReducers({
     auth: authReducer(services),
+    banner: bannerReducer,
     collectionPanel: collectionPanelReducer,
     collectionPanelFiles: collectionPanelFilesReducer,
     contextMenu: contextMenuReducer,