2016-05-17 03:12:49 +08:00
|
|
|
import '/imports/startup/server';
|
2017-06-19 21:13:35 +08:00
|
|
|
|
|
|
|
// 2x
|
2017-10-12 10:00:28 +08:00
|
|
|
import '/imports/api/meetings/server';
|
|
|
|
import '/imports/api/users/server';
|
|
|
|
import '/imports/api/breakouts/server';
|
|
|
|
import '/imports/api/screenshare/server';
|
2018-09-14 02:09:30 +08:00
|
|
|
import '/imports/api/users-settings/server';
|
2017-10-12 10:00:28 +08:00
|
|
|
import '/imports/api/voice-users/server';
|
2019-09-07 00:50:31 +08:00
|
|
|
import '/imports/api/video-streams/server';
|
2020-04-10 01:01:46 +08:00
|
|
|
import '/imports/api/connection-status/server';
|
2023-05-11 04:03:20 +08:00
|
|
|
import '/imports/api/timer/server';
|
2021-10-16 03:07:13 +08:00
|
|
|
import '/imports/api/pads/server';
|
2018-11-30 01:24:02 +08:00
|
|
|
|
2017-07-01 03:16:00 +08:00
|
|
|
// Commons
|
2017-04-29 01:12:08 +08:00
|
|
|
import '/imports/api/log-client/server';
|
2016-06-02 01:18:13 +08:00
|
|
|
import '/imports/api/common/server/helpers';
|
2016-05-11 02:53:05 +08:00
|
|
|
import '/imports/startup/server/logger';
|
2020-02-26 23:24:38 +08:00
|
|
|
|
|
|
|
// Needed for Atmosphere package RocketChat/meteor-streamer
|
|
|
|
// It is out of date and was written when Meteor contained lodash
|
|
|
|
// package. However, we now import lodash as an npm package
|
|
|
|
// in order to control versions, update flexibly, etc..
|
|
|
|
// Setting the global._ to utilize the npm lodash package is an interim fix
|
|
|
|
// and its introduction was inspired by
|
|
|
|
// https://github.com/RocketChat/meteor-streamer/issues/40#issuecomment-497627893
|
2023-02-24 01:38:48 +08:00
|
|
|
import { isEmpty } from 'radash';
|
2020-02-26 23:24:38 +08:00
|
|
|
|
2023-02-24 01:38:48 +08:00
|
|
|
global._ = { isEmpty };
|