client/src/reducers/index.js
changeset 100 6fd752d98933
parent 89 06f609adfbf8
child 107 e6f85e26b08c
--- a/client/src/reducers/index.js	Tue Jun 27 18:11:40 2017 +0200
+++ b/client/src/reducers/index.js	Tue Jun 27 18:12:10 2017 +0200
@@ -4,7 +4,7 @@
 
 import notes from './notesReducer';
 import { sessions } from './sessionsReducer';
-import { isAuthenticated, currentUser, login, register, token } from './authReducer';
+import { isAuthenticated, currentUser, login, register, token, groups, createGroup } from './authReducer';
 import { autoSubmit } from './miscReducer';
 
 const rootReducer = combineReducers({
@@ -16,7 +16,9 @@
   register,
   token,
   router: routerReducer,
-  autoSubmit
+  autoSubmit,
+  groups,
+  createGroup
 });
 
 export default rootReducer;