summaryrefslogtreecommitdiff
path: root/src/reducers/index.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-05 09:30:42 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:05:57 +0200
commit42778e8be409b97059fa519b53c303cdba502e01 (patch)
tree23d03a1f8a9f8d137bf723c72086a6d79406874f /src/reducers/index.js
parent6f3afd0317a8e549f77ad6764f6dbe4d4953b67c (diff)
Implement rack creation
Diffstat (limited to 'src/reducers/index.js')
-rw-r--r--src/reducers/index.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/reducers/index.js b/src/reducers/index.js
index d3ace393..2dc6b8af 100644
--- a/src/reducers/index.js
+++ b/src/reducers/index.js
@@ -1,10 +1,11 @@
import {combineReducers} from "redux";
import {auth} from "./auth";
+import {construction} from "./construction";
import {interactionLevel} from "./interaction-level";
import {modals} from "./modals";
import {objects} from "./objects";
import {authorizationsOfCurrentUser, authVisibilityFilter, currentSimulationId} from "./simulations";
-import {currentDatacenterId, currentRoomInConstruction} from "./topology";
+import {currentDatacenterId} from "./topology";
const rootReducer = combineReducers({
auth,
@@ -15,7 +16,7 @@ const rootReducer = combineReducers({
currentSimulationId,
currentDatacenterId,
interactionLevel,
- currentRoomInConstruction,
+ construction,
});
export default rootReducer;