| changeset 168 | ea92f4fe783d |
| parent 134 | be36eed5e6e0 |
| child 172 | 4b780ebbedc6 |
| 167:1f340f3597a8 | 168:ea92f4fe783d |
|---|---|
1 import { combineReducers } from 'redux-immutable'; |
1 import { combineReducers } from 'redux'; |
2 import { routerReducer } from 'react-router-redux'; |
|
3 |
2 |
4 import notes from './notesReducer'; |
3 import notes from './notesReducer'; |
5 import { sessions } from './sessionsReducer'; |
4 import { sessions } from './sessionsReducer'; |
6 import { isAuthenticated, currentUser, currentGroup, login, register, token, groups, createGroup, clientId } from './authReducer'; |
5 import { isAuthenticated, currentUser, currentGroup, login, register, token, groups, createGroup, clientId } from './authReducer'; |
7 import { autoSubmit, online } from './miscReducer'; |
6 import { autoSubmit, online } from './miscReducer'; |
23 }), |
22 }), |
24 status: combineReducers({ |
23 status: combineReducers({ |
25 isSynchronizing, |
24 isSynchronizing, |
26 online |
25 online |
27 }), |
26 }), |
28 router: routerReducer, |
|
29 autoSubmit, |
27 autoSubmit, |
30 groups, |
28 groups, |
31 createGroup, |
29 createGroup, |
32 }); |
30 }); |
33 |
31 |