14 lines
807 B
JavaScript
Executable File
14 lines
807 B
JavaScript
Executable File
import RedisPubSub from '/imports/startup/server/redis';
|
|
import handleBreakoutJoinURL from './handlers/breakoutJoinURL';
|
|
import handleBreakoutStarted from './handlers/breakoutStarted';
|
|
import handleUpdateTimeRemaining from './handlers/updateTimeRemaining';
|
|
import handleBreakoutClosed from './handlers/breakoutClosed';
|
|
import joinedUsersChanged from './handlers/joinedUsersChanged';
|
|
|
|
RedisPubSub.on('BreakoutRoomStartedEvtMsg', handleBreakoutStarted);
|
|
RedisPubSub.on('BreakoutRoomJoinURLEvtMsg', handleBreakoutJoinURL);
|
|
RedisPubSub.on('RequestBreakoutJoinURLRespMsg', handleBreakoutJoinURL);
|
|
RedisPubSub.on('BreakoutRoomsTimeRemainingUpdateEvtMsg', handleUpdateTimeRemaining);
|
|
RedisPubSub.on('BreakoutRoomEndedEvtMsg', handleBreakoutClosed);
|
|
RedisPubSub.on('UpdateBreakoutUsersEvtMsg', joinedUsersChanged);
|