client/src/reducers/index.js
changeset 89 06f609adfbf8
parent 72 7634b424f426
child 100 6fd752d98933
--- a/client/src/reducers/index.js	Mon Jun 26 16:05:47 2017 +0200
+++ b/client/src/reducers/index.js	Mon Jun 26 15:45:50 2017 +0200
@@ -4,7 +4,7 @@
 
 import notes from './notesReducer';
 import { sessions } from './sessionsReducer';
-import { isAuthenticated, currentUser, login, token } from './authReducer';
+import { isAuthenticated, currentUser, login, register, token } from './authReducer';
 import { autoSubmit } from './miscReducer';
 
 const rootReducer = combineReducers({
@@ -13,6 +13,7 @@
   isAuthenticated,
   currentUser,
   login,
+  register,
   token,
   router: routerReducer,
   autoSubmit