2017-01-18 11:59:46 +01:00

19 lines
290 B
JavaScript

/*
* Actions
*/
import {
LOAD_DEFAULT
} from './constants';
/**
* Load the generalSettings, this action starts the request saga
*
* @return {object} An action object with a type of LOAD_GENERAL_SETTINGS
*/
export function defaultLoad() {
return {
type: LOAD_DEFAULT,
};
}