diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-08-31 17:59:51 +0200 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-23 10:05:50 +0200 |
| commit | 3f736cd3db63f106eac02f220477b4a0f3b0eceb (patch) | |
| tree | 80afa73f8c4d281b2fccba8ad2baa7c10f7e7e84 /src/reducers/index.js | |
| parent | b17f1d8cb4815f57a4b7043cc91b867ec3cbc867 (diff) | |
Implement room creation
Diffstat (limited to 'src/reducers/index.js')
| -rw-r--r-- | src/reducers/index.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/reducers/index.js b/src/reducers/index.js index 4ddaaec9..d3ace393 100644 --- a/src/reducers/index.js +++ b/src/reducers/index.js @@ -4,7 +4,7 @@ import {interactionLevel} from "./interaction-level"; import {modals} from "./modals"; import {objects} from "./objects"; import {authorizationsOfCurrentUser, authVisibilityFilter, currentSimulationId} from "./simulations"; -import {currentDatacenterId} from "./topology"; +import {currentDatacenterId, currentRoomInConstruction} from "./topology"; const rootReducer = combineReducers({ auth, @@ -15,6 +15,7 @@ const rootReducer = combineReducers({ currentSimulationId, currentDatacenterId, interactionLevel, + currentRoomInConstruction, }); export default rootReducer; |
