diff --git a/bigbluebutton-html5/imports/api/presentation-pods/server/eventHandlers.js b/bigbluebutton-html5/imports/api/presentation-pods/server/eventHandlers.js old mode 100755 new mode 100644 index 2417c479d4786ea1da8b61d3215a299b96705d43..b1bcd25a6de9db6db0509e9b5ba6666b671b7b91 --- a/bigbluebutton-html5/imports/api/presentation-pods/server/eventHandlers.js +++ b/bigbluebutton-html5/imports/api/presentation-pods/server/eventHandlers.js @@ -1,12 +1,10 @@ import RedisPubSub from '/imports/startup/server/redis'; import handleCreateNewPresentationPod from './handlers/createNewPresentationPod'; import handleRemovePresentationPod from './handlers/removePresentationPod'; -import handleGetAllPresentationPods from './handlers/getAllPresentationPods'; +import handleSyncGetPresentationPods from './handlers/syncGetPresentationPods'; import handleSetPresenterInPod from './handlers/setPresenterInPod'; -// import handleSyncGetPresentationPods from './handlers/syncGetPresentationPods'; RedisPubSub.on('CreateNewPresentationPodEvtMsg', handleCreateNewPresentationPod); RedisPubSub.on('RemovePresentationPodEvtMsg', handleRemovePresentationPod); -// RedisPubSub.on('GetAllPresentationPodsRespMsg', handleGetAllPresentationPods); RedisPubSub.on('SetPresenterInPodRespMsg', handleSetPresenterInPod); -RedisPubSub.on('SyncGetPresentationPodsRespMsg', handleGetAllPresentationPods); +RedisPubSub.on('SyncGetPresentationPodsRespMsg', handleSyncGetPresentationPods);