mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 05:53:03 +00:00
progress vertical menu
This commit is contained in:
@@ -16,6 +16,10 @@ import {
|
||||
} from './shared/notifications/notifications.reducers';
|
||||
import { truncatableReducer, TruncatablesState } from './shared/truncatable/truncatable.reducer';
|
||||
import { navbarReducer, NavbarState } from './navbar/navbar.reducer';
|
||||
import {
|
||||
AdminSidebarSectionsState,
|
||||
sidebarSectionReducer
|
||||
} from './+admin/admin-sidebar/admin-sidebar.reducer';
|
||||
|
||||
export interface AppState {
|
||||
router: fromRouter.RouterReducerState;
|
||||
@@ -26,6 +30,7 @@ export interface AppState {
|
||||
searchSidebar: SearchSidebarState;
|
||||
searchFilter: SearchFiltersState;
|
||||
truncatable: TruncatablesState;
|
||||
adminSidebarSection: AdminSidebarSectionsState;
|
||||
}
|
||||
|
||||
export const appReducers: ActionReducerMap<AppState> = {
|
||||
@@ -36,7 +41,8 @@ export const appReducers: ActionReducerMap<AppState> = {
|
||||
notifications: notificationsReducer,
|
||||
searchSidebar: sidebarReducer,
|
||||
searchFilter: filterReducer,
|
||||
truncatable: truncatableReducer
|
||||
truncatable: truncatableReducer,
|
||||
adminSidebarSection: sidebarSectionReducer
|
||||
};
|
||||
|
||||
export const routerStateSelector = (state: AppState) => state.router;
|
||||
|
Reference in New Issue
Block a user