mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-14 07:04:45 -04:00
25 lines
996 B
TypeScript
25 lines
996 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import type { ApplicationState } from './application-state'
|
|
import { DarkModeConfigReducer } from './dark-mode/reducers'
|
|
import { EditorConfigReducer } from './editor/reducers'
|
|
import { HistoryReducer } from './history/reducers'
|
|
import { NoteDetailsReducer } from './note-details/reducer'
|
|
import { RealtimeStatusReducer } from './realtime/reducers'
|
|
import { RendererStatusReducer } from './renderer-status/reducers'
|
|
import { UserReducer } from './user/reducers'
|
|
import type { Reducer } from 'redux'
|
|
import { combineReducers } from 'redux'
|
|
|
|
export const allReducers: Reducer<ApplicationState> = combineReducers<ApplicationState>({
|
|
user: UserReducer,
|
|
history: HistoryReducer,
|
|
editorConfig: EditorConfigReducer,
|
|
darkMode: DarkModeConfigReducer,
|
|
noteDetails: NoteDetailsReducer,
|
|
rendererStatus: RendererStatusReducer,
|
|
realtimeStatus: RealtimeStatusReducer
|
|
})
|