2017-08-17 06:28:41 +00:00
|
|
|
import { combineReducers } from 'redux';
|
2021-09-13 20:41:05 +00:00
|
|
|
|
|
|
|
import inquiry from '../ee/omnichannel/reducers/inquiry';
|
2020-04-01 19:24:42 +00:00
|
|
|
import settings from './settings';
|
2017-08-17 06:28:41 +00:00
|
|
|
import login from './login';
|
|
|
|
import meteor from './connect';
|
2020-03-06 13:13:24 +00:00
|
|
|
import room from './room';
|
2017-12-08 19:13:21 +00:00
|
|
|
import rooms from './rooms';
|
2017-08-18 21:30:16 +00:00
|
|
|
import server from './server';
|
2018-04-24 19:34:03 +00:00
|
|
|
import selectedUsers from './selectedUsers';
|
2017-09-01 19:42:50 +00:00
|
|
|
import createChannel from './createChannel';
|
2017-09-21 17:08:00 +00:00
|
|
|
import app from './app';
|
2018-09-04 14:29:20 +00:00
|
|
|
import sortPreferences from './sortPreferences';
|
2019-07-29 16:33:28 +00:00
|
|
|
import share from './share';
|
2019-09-16 20:26:32 +00:00
|
|
|
import customEmojis from './customEmojis';
|
|
|
|
import activeUsers from './activeUsers';
|
|
|
|
import usersTyping from './usersTyping';
|
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-08-21 13:38:50 +00:00
|
|
|
import enterpriseModules from './enterpriseModules';
|
2020-09-11 14:31:38 +00:00
|
|
|
import encryption from './encryption';
|
2021-02-25 16:41:44 +00:00
|
|
|
import permissions from './permissions';
|
2021-07-01 16:51:19 +00:00
|
|
|
import roles from './roles';
|
2017-08-17 06:28:41 +00:00
|
|
|
|
|
|
|
export default combineReducers({
|
2018-01-16 18:48:05 +00:00
|
|
|
settings,
|
|
|
|
login,
|
|
|
|
meteor,
|
|
|
|
server,
|
2018-04-24 19:34:03 +00:00
|
|
|
selectedUsers,
|
2018-01-16 18:48:05 +00:00
|
|
|
createChannel,
|
|
|
|
app,
|
2020-03-06 13:13:24 +00:00
|
|
|
room,
|
2018-01-16 18:48:05 +00:00
|
|
|
rooms,
|
2019-05-21 12:12:15 +00:00
|
|
|
sortPreferences,
|
2019-08-23 13:18:47 +00:00
|
|
|
share,
|
2019-09-16 20:26:32 +00:00
|
|
|
customEmojis,
|
|
|
|
activeUsers,
|
2020-01-28 13:22:35 +00:00
|
|
|
usersTyping,
|
2020-03-30 19:50:27 +00:00
|
|
|
inviteLinks,
|
2020-07-31 18:22:30 +00:00
|
|
|
createDiscussion,
|
2020-08-21 13:38:50 +00:00
|
|
|
inquiry,
|
2020-09-11 14:31:38 +00:00
|
|
|
enterpriseModules,
|
2021-02-25 16:41:44 +00:00
|
|
|
encryption,
|
2021-07-01 16:51:19 +00:00
|
|
|
permissions,
|
|
|
|
roles
|
2017-08-17 06:28:41 +00:00
|
|
|
});
|