bigbluebutton-Github/bigbluebutton-html5/imports/api/chat/server/methods.js
2017-10-11 18:09:35 -07:00

10 lines
330 B
JavaScript

import mapToAcl from '/imports/startup/mapToAcl';
import { Meteor } from 'meteor/meteor';
import sendChat from './methods/sendChat';
import clearPublicChatHistory from './methods/clearPublicChatHistory';
Meteor.methods(mapToAcl(['methods.sendChat', 'methods.clearPublicChatHistory'], {
sendChat,
clearPublicChatHistory,
}));