bigbluebutton-Github/bigbluebutton-html5/imports/api/chat/server/methods.js

10 lines
330 B
JavaScript
Raw Normal View History

import mapToAcl from '/imports/startup/mapToAcl';
2016-10-19 20:18:47 +08:00
import { Meteor } from 'meteor/meteor';
import sendChat from './methods/sendChat';
import clearPublicChatHistory from './methods/clearPublicChatHistory';
2016-10-19 20:18:47 +08:00
Meteor.methods(mapToAcl(['methods.sendChat', 'methods.clearPublicChatHistory'], {
sendChat,
clearPublicChatHistory,
}));