bigbluebutton-Github/bigbluebutton-html5/imports/api/2.0/captions/server/eventHandlers.js
2017-06-29 17:22:09 -03:00

10 lines
462 B
JavaScript

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);