19 lines
290 B
JavaScript
Raw Normal View History

2017-01-17 13:40:59 +01:00
/*
* Actions
*/
import {
2017-01-18 11:59:46 +01:00
LOAD_DEFAULT
2017-01-17 13:40:59 +01:00
} from './constants';
/**
* Load the generalSettings, this action starts the request saga
*
* @return {object} An action object with a type of LOAD_GENERAL_SETTINGS
*/
2017-01-18 11:59:46 +01:00
export function defaultLoad() {
2017-01-17 13:40:59 +01:00
return {
2017-01-18 11:59:46 +01:00
type: LOAD_DEFAULT,
2017-01-17 13:40:59 +01:00
};
}