summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts')
-rw-r--r--sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts b/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts
index c9c475411..697dbd7a0 100644
--- a/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts
+++ b/sdnr/wt/odlux/apps/networkMapApp/src/handlers/rootReducer.ts
@@ -23,13 +23,15 @@ import { PopupsReducer, popupStoreState } from "./popupReducer";
import { MapReducer, mapState } from "./mapReducer";
import { SearchReducer, searchState } from "./searchReducer";
import { connectivityState, ConnectivityReducer } from './connectivityReducer';
+import { SettingsReducer, SettingsState } from './settingsReducer';
export interface INetworkAppStoreState{
details: DetailsStoreState,
popup: popupStoreState,
map: mapState,
search: searchState,
- connectivity: connectivityState
+ connectivity: connectivityState,
+ settings: SettingsState
}
declare module '../../../../framework/src/store/applicationStore' {
@@ -43,7 +45,8 @@ const appHandler = {
popup: PopupsReducer,
map: MapReducer,
search: SearchReducer,
- connectivity: ConnectivityReducer};
+ connectivity: ConnectivityReducer,
+ settings: SettingsReducer};
export const networkmapRootHandler = combineActionHandler<INetworkAppStoreState>(appHandler)