summaryrefslogtreecommitdiff
path: root/app/client/store.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-09-16 22:40:05 +0200
committerJules Laplace <julescarbon@gmail.com>2018-09-16 22:40:05 +0200
commitd3e4bb3ed2585859a3adeb7eeff35b7c75ebd840 (patch)
treee88e9edae5a63328fb1acc625e5624990717d20f /app/client/store.js
parent189be96150fbd49766228cf50c6a89279542565c (diff)
auth gate on main app. pull in auth routes from bucky.
Diffstat (limited to 'app/client/store.js')
-rw-r--r--app/client/store.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/client/store.js b/app/client/store.js
index 8ffab15..654b22d 100644
--- a/app/client/store.js
+++ b/app/client/store.js
@@ -6,6 +6,7 @@ import createHistory from 'history/createBrowserHistory'
import { routerReducer } from 'react-router-redux'
// import navReducer from './nav.reducer'
+import authReducer from './auth/auth.reducer'
import systemReducer from './system/system.reducer'
import dashboardReducer from './dashboard/dashboard.reducer'
import liveReducer from './live/live.reducer'
@@ -15,6 +16,7 @@ import audioPlayerReducer from './common/audioPlayer/audioPlayer.reducer'
import { moduleReducer } from './modules/module.reducer'
const appReducer = combineReducers({
+ auth: authReducer,
system: systemReducer,
dashboard: dashboardReducer,
live: liveReducer,