spee.ch/react/sagas/index.js

16 lines
489 B
JavaScript
Raw Normal View History

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