bigbluebutton-Github/bigbluebutton-html5/imports/api/2.0/captions/server/eventHandlers.js

10 lines
462 B
JavaScript
Raw Normal View History

2017-06-30 04:22:09 +08:00
import RedisPubSub from '/imports/startup/server/redis2x';
import handleCaptionHistory from './handlers/captionHistory';
import handleCaptionUpdate from './handlers/captionUpdate';
import handleCaptionOwnerUpdate from './handlers/captionOwnerUpdate';
// TODO
RedisPubSub.on('SendCaptionHistoryRespMsg', handleCaptionHistory);
RedisPubSub.on('EditCaptionHistoryEvtMsg', handleCaptionUpdate);
RedisPubSub.on('UpdateCaptionOwnerEvtMsg', handleCaptionOwnerUpdate);