mirror of
https://github.com/wassname/talk.git
synced 2026-07-04 19:08:33 +08:00
19 lines
339 B
JavaScript
19 lines
339 B
JavaScript
import {
|
|
MERGE_CONFIG,
|
|
ENABLE_PLUGINS_DEBUG,
|
|
DISABLE_PLUGINS_DEBUG,
|
|
} from '../constants/config';
|
|
|
|
export const mergeConfig = config => ({
|
|
type: MERGE_CONFIG,
|
|
config,
|
|
});
|
|
|
|
export const enablePluginsDebug = () => ({
|
|
type: ENABLE_PLUGINS_DEBUG,
|
|
});
|
|
|
|
export const disablePluginsDebug = () => ({
|
|
type: DISABLE_PLUGINS_DEBUG,
|
|
});
|