spee.ch/react/sagas/index.js

16 lines
489 B
JavaScript
Raw Normal View History

2018-02-06 21:55:04 -08:00
import { all } from 'redux-saga/effects';
import { watchHandleShowPageUri } from './show_uri';
2018-02-13 16:51:59 -08:00
import { watchNewAssetRequest } from './show_asset';
import { watchNewChannelRequest, watchUpdateChannelClaims } from './show_channel';
2018-02-08 14:17:03 -08:00
import { watchFileIsRequested } from './file';
2018-02-06 19:00:52 -08:00
export default function * rootSaga () {
2018-02-06 19:00:52 -08:00
yield all([
watchHandleShowPageUri(),
2018-02-07 13:26:07 -08:00
watchNewAssetRequest(),
2018-02-07 23:02:57 -08:00
watchNewChannelRequest(),
2018-02-13 16:51:59 -08:00
watchUpdateChannelClaims(),
2018-02-06 21:55:04 -08:00
watchFileIsRequested(),
2018-02-06 19:00:52 -08:00
]);
}