X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aai%2Fsparky-fe.git;a=blobdiff_plain;f=src%2Fapp%2FAppStore.js;h=856ffcabc00d87bc08aed60a7ff5fa84557d93fc;hp=9205937d39e619cc74f0736c0e5ebe4cd51f0d1d;hb=5ee7367a101143715c2869d72ea4a6fbf55f5af6;hpb=47b85e9b95e0a0a3570f0cea4d3ee4645c911a8b diff --git a/src/app/AppStore.js b/src/app/AppStore.js index 9205937..856ffca 100644 --- a/src/app/AppStore.js +++ b/src/app/AppStore.js @@ -27,7 +27,8 @@ import InventoryReducer from './inventory/InventoryReducer.js'; import VnfSearchReducer from './vnfSearch/VnfSearchReducer.js'; import GlobalInlineMessageBarReducer from 'app/globalInlineMessageBar/GlobalInlineMessageBarReducer.js'; import ExtensibilityReducer from 'app/extensibility/ExtensibilityReducer.js'; - +import ConfigurableViewReducer from 'app/configurableViews/ConfigurableViewReducer.js'; +import ModelReducer from './model/modelSearch/ModelReducer.js'; function createCompose() { @@ -45,8 +46,10 @@ export const storeCreator = (initialState) => createStore( inventoryReducer: InventoryReducer, vnfSearch: VnfSearchReducer, globalInlineMessageBar: GlobalInlineMessageBarReducer, - extensibility: ExtensibilityReducer - }), + extensibility: ExtensibilityReducer, + configurableViews: ConfigurableViewReducer, + modelReducer: ModelReducer + }), initialState, createCompose() );