diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-08-15 23:24:28 +0300 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-23 10:05:42 +0200 |
| commit | 91c8088e1d7def9242f60c708cd34f25dcb77d76 (patch) | |
| tree | b68065019692cea5cf6c3d14b811104aff2f0879 /src/reducers/index.js | |
| parent | d7512ace72448242b392299cf459c9c72c8dbee5 (diff) | |
Connect to backend and fetch initial project data
Diffstat (limited to 'src/reducers/index.js')
| -rw-r--r-- | src/reducers/index.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/reducers/index.js b/src/reducers/index.js index 4e35f6e8..71379a6f 100644 --- a/src/reducers/index.js +++ b/src/reducers/index.js @@ -1,10 +1,12 @@ import {combineReducers} from "redux"; import {auth} from "./auth"; -import {authorizations, authVisibilityFilter, newProjectModalVisible} from "./projects"; +import {objects} from "./objects"; +import {authorizationsOfCurrentUser, authVisibilityFilter, newProjectModalVisible} from "./projects"; const rootReducer = combineReducers({ auth, - authorizations, + objects, + authorizationsOfCurrentUser, newProjectModalVisible, authVisibilityFilter, }); |
