spee.ch/react/sagas/index.js
2018-02-09 10:02:13 -08:00

16 lines
541 B
JavaScript

import { all } from 'redux-saga/effects';
import { watchNewAssetRequest, watchNewChannelRequest } from './request';
import { watchFileIsRequested } from './file';
import { watchShowNewChannel, watchShowNewChannelClaimsRequest } from './show_channel';
import { watchShowNewAsset } from './show_asset';
export default function* rootSaga () {
yield all([
watchNewAssetRequest(),
watchNewChannelRequest(),
watchShowNewAsset(),
watchShowNewChannel(),
watchFileIsRequested(),
watchShowNewChannelClaimsRequest(),
]);
}