bigbluebutton-Github/bigbluebutton-html5/imports/api/group-chat-msg/server/methods.js
2019-07-31 02:37:50 +00:00

13 lines
387 B
JavaScript

import { Meteor } from 'meteor/meteor';
import sendGroupChatMsg from './methods/sendGroupChatMsg';
import clearPublicChatHistory from './methods/clearPublicChatHistory';
import startUserTyping from './methods/startUserTyping';
import stopUserTyping from './methods/stopUserTyping';
Meteor.methods({
sendGroupChatMsg,
clearPublicChatHistory,
startUserTyping,
stopUserTyping,
});