29 lines
468 B
JavaScript
Raw Normal View History

2017-01-17 13:40:59 +01:00
/**
* Set of asynchronous functions.
*/
2017-01-19 16:42:16 +01:00
import { takeLatest } from 'redux-saga';
import { put, fork } from 'redux-saga/effects';
import {
load_success
} from 'containers/HomePage/actions';
import {
LOAD
} from 'containers/HomePage/constants';
export function *fetchDefault() {
yield put(load_success({
name: 'Content Manager'
}));
}
export function* mySaga() {
yield fork(takeLatest, LOAD, fetchDefault);
}
2017-01-17 13:40:59 +01:00
// Bootstrap sagas
export default [];