2018-02-07 06:55:04 +01:00
|
|
|
import { all } from 'redux-saga/effects';
|
2018-02-08 23:17:03 +01:00
|
|
|
import { watchNewAssetRequest, watchNewChannelRequest } from './request';
|
|
|
|
import { watchFileIsRequested } from './file';
|
2018-02-09 19:02:13 +01:00
|
|
|
import { watchShowNewChannel, watchShowNewChannelClaimsRequest } from './show_channel';
|
2018-02-08 23:17:03 +01:00
|
|
|
import { watchShowNewAsset } from './show_asset';
|
2018-02-07 04:00:52 +01:00
|
|
|
|
|
|
|
export default function* rootSaga () {
|
|
|
|
yield all([
|
2018-02-07 22:26:07 +01:00
|
|
|
watchNewAssetRequest(),
|
2018-02-08 08:02:57 +01:00
|
|
|
watchNewChannelRequest(),
|
2018-02-08 23:17:03 +01:00
|
|
|
watchShowNewAsset(),
|
2018-02-08 19:59:49 +01:00
|
|
|
watchShowNewChannel(),
|
2018-02-07 06:55:04 +01:00
|
|
|
watchFileIsRequested(),
|
2018-02-09 19:02:13 +01:00
|
|
|
watchShowNewChannelClaimsRequest(),
|
2018-02-07 04:00:52 +01:00
|
|
|
]);
|
|
|
|
}
|