-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrootSaga.ts
31 lines (31 loc) · 1.1 KB
/
rootSaga.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { all } from 'redux-saga/effects';
import { watchChannelPerformance } from './channelPerformance/saga';
import { watchCommonFilters } from './commonFilters/saga';
import { watchTopChannel } from './topChannel/saga';
import { watchCities } from './cities/saga';
import { watchPincodes } from './pincodes/saga';
import { watchDummyCharts } from './dummy/saga';
import { watchBouquets} from './bouquets/saga';
import { watchDeviceMonitor } from './deviceMonitor/saga';
import { watchDeviceLogs } from './deviceLogs/saga';
import { watchSlowChannel } from './slowChannel/saga';
import { watchReportGeneration } from './reportGeneration/saga';
import { watchTopSlowChannelGeo } from './topSlowChannelGeo/saga';
import { watchAuth } from './auth/saga';
export function* rootSaga() {
yield all([
watchChannelPerformance(),
watchCommonFilters(),
watchTopChannel(),
watchSlowChannel(),
watchCities(),
watchPincodes(),
watchBouquets(),
watchDeviceMonitor(),
watchDeviceLogs(),
watchReportGeneration(),
watchTopSlowChannelGeo(),
watchDummyCharts(),
watchAuth()
]);
}