2021-04-12 13:32:25 +00:00
|
|
|
import { combineReducers } from "redux";
|
|
|
|
import { routerReducer } from "react-router-redux";
|
2016-10-19 20:22:18 +00:00
|
|
|
|
2021-04-12 13:32:25 +00:00
|
|
|
import app from "./nodes/app/reducer";
|
|
|
|
import auth from "./nodes/auth/reducer";
|
|
|
|
import components from "./nodes/components/reducer";
|
|
|
|
import entities from "./nodes/entities/reducer";
|
|
|
|
import errors500 from "./nodes/errors500/reducer";
|
|
|
|
import notifications from "./nodes/notifications/reducer";
|
|
|
|
import osquery from "./nodes/osquery/reducer";
|
|
|
|
import persistentFlash from "./nodes/persistent_flash/reducer";
|
|
|
|
import redirectLocation from "./nodes/redirectLocation/reducer";
|
|
|
|
import version from "./nodes/version/reducer";
|
2016-09-07 00:04:02 +00:00
|
|
|
|
|
|
|
export default combineReducers({
|
|
|
|
app,
|
2016-09-13 19:50:37 +00:00
|
|
|
auth,
|
2016-09-16 13:55:46 +00:00
|
|
|
components,
|
2016-10-03 17:54:22 +00:00
|
|
|
entities,
|
2020-11-04 20:07:53 +00:00
|
|
|
errors500,
|
2016-10-03 17:54:22 +00:00
|
|
|
notifications,
|
2020-11-05 02:00:51 +00:00
|
|
|
osquery,
|
2017-02-10 03:16:51 +00:00
|
|
|
persistentFlash,
|
2016-10-17 13:27:22 +00:00
|
|
|
redirectLocation,
|
2016-09-07 00:04:02 +00:00
|
|
|
routing: routerReducer,
|
2021-03-27 02:19:07 +00:00
|
|
|
version,
|
2016-09-07 00:04:02 +00:00
|
|
|
});
|