X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a5984c9693267f41237746af6b37d8402effdc39..6e44781d01db889030cc5f7819aa7f15fe837e19:/src/store/store.ts diff --git a/src/store/store.ts b/src/store/store.ts index d541156e2d..6053e0378a 100644 --- a/src/store/store.ts +++ b/src/store/store.ts @@ -8,6 +8,7 @@ import thunkMiddleware from 'redux-thunk'; import { History } from "history"; import projectsReducer, { ProjectState } from "./project/project-reducer"; import authReducer, { AuthState } from "./auth/auth-reducer"; +import collectionsReducer, { CollectionState } from "./collection/collection-reducer"; const composeEnhancers = (process.env.NODE_ENV === 'development' && @@ -15,14 +16,16 @@ const composeEnhancers = compose; export interface RootState { - auth: AuthState, - projects: ProjectState, - router: RouterState + auth: AuthState; + projects: ProjectState; + collections: CollectionState; + router: RouterState; } const rootReducer = combineReducers({ auth: authReducer, projects: projectsReducer, + collections: collectionsReducer, router: routerReducer });