2017-09-21 17:08:00 +00:00
|
|
|
import { all } from 'redux-saga/effects';
|
2021-09-13 20:41:05 +00:00
|
|
|
|
|
|
|
import inquiry from '../ee/omnichannel/sagas/inquiry';
|
2017-08-17 00:24:06 +00:00
|
|
|
import login from './login';
|
2017-08-17 02:06:22 +00:00
|
|
|
import rooms from './rooms';
|
2019-02-07 16:13:21 +00:00
|
|
|
import room from './room';
|
2017-08-17 06:28:41 +00:00
|
|
|
import messages from './messages';
|
2017-08-18 21:30:16 +00:00
|
|
|
import selectServer from './selectServer';
|
2017-09-01 19:42:50 +00:00
|
|
|
import createChannel from './createChannel';
|
2017-08-21 03:00:41 +00:00
|
|
|
import init from './init';
|
2017-11-28 11:01:18 +00:00
|
|
|
import state from './state';
|
2018-05-07 20:43:26 +00:00
|
|
|
import deepLinking from './deepLinking';
|
2020-01-28 13:22:35 +00:00
|
|
|
import inviteLinks from './inviteLinks';
|
2020-03-30 19:50:27 +00:00
|
|
|
import createDiscussion from './createDiscussion';
|
2020-09-11 14:31:38 +00:00
|
|
|
import encryption from './encryption';
|
2020-08-28 19:41:08 +00:00
|
|
|
|
2017-08-17 00:24:06 +00:00
|
|
|
const root = function* root() {
|
2017-09-21 17:08:00 +00:00
|
|
|
yield all([
|
|
|
|
init(),
|
|
|
|
createChannel(),
|
|
|
|
rooms(),
|
2019-02-07 16:13:21 +00:00
|
|
|
room(),
|
2017-09-21 17:08:00 +00:00
|
|
|
login(),
|
|
|
|
messages(),
|
2017-11-28 11:01:18 +00:00
|
|
|
selectServer(),
|
2017-12-08 19:13:21 +00:00
|
|
|
state(),
|
2020-01-28 13:22:35 +00:00
|
|
|
deepLinking(),
|
2020-03-30 19:50:27 +00:00
|
|
|
inviteLinks(),
|
2020-07-31 18:22:30 +00:00
|
|
|
createDiscussion(),
|
2020-09-11 14:31:38 +00:00
|
|
|
inquiry(),
|
|
|
|
encryption()
|
2017-09-21 17:08:00 +00:00
|
|
|
]);
|
2017-08-17 00:24:06 +00:00
|
|
|
};
|
2017-11-28 17:47:56 +00:00
|
|
|
|
2017-08-17 00:24:06 +00:00
|
|
|
export default root;
|