summaryrefslogtreecommitdiff
path: root/src/reducers/index.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-07 22:15:17 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:05:58 +0200
commit1b5d2658f9ec06308b2a5ed062f6f5b4798ed733 (patch)
tree84d35684a50f897fc4c5f460bed595adf22c9e66 /src/reducers/index.js
parent8218c3d3c21bfa7c4f3ee4872722b9b1261576fb (diff)
Reorganize actions and state tree
Diffstat (limited to 'src/reducers/index.js')
-rw-r--r--src/reducers/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/reducers/index.js b/src/reducers/index.js
index 2dc6b8af..f1f51337 100644
--- a/src/reducers/index.js
+++ b/src/reducers/index.js
@@ -4,15 +4,15 @@ import {construction} from "./construction";
import {interactionLevel} from "./interaction-level";
import {modals} from "./modals";
import {objects} from "./objects";
-import {authorizationsOfCurrentUser, authVisibilityFilter, currentSimulationId} from "./simulations";
+import {simulationList} from "./simulation-list";
+import {currentSimulationId} from "./simulations";
import {currentDatacenterId} from "./topology";
const rootReducer = combineReducers({
auth,
objects,
modals,
- authorizationsOfCurrentUser,
- authVisibilityFilter,
+ simulationList,
currentSimulationId,
currentDatacenterId,
interactionLevel,