bigbluebutton-Github/bigbluebutton-html5/imports/api/captions/server/eventHandlers.js
2017-02-08 16:02:39 +00:00

9 lines
469 B
JavaScript

import RedisPubSub from '/imports/startup/server/redis';
import handleCaptionHistory from './handlers/captionHistory';
import handleCaptionUpdate from './handlers/captionUpdate';
import handleCaptionOwnerUpdate from './handlers/captionOwnerUpdate';
RedisPubSub.on('send_caption_history_reply_message', handleCaptionHistory);
RedisPubSub.on('edit_caption_history_message', handleCaptionUpdate);
RedisPubSub.on('update_caption_owner_message', handleCaptionOwnerUpdate);