mirror of
https://github.com/strapi/strapi.git
synced 2025-08-31 20:33:03 +00:00
19 lines
290 B
JavaScript
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,
|
|
};
|
|
}
|