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

13 lines
387 B
JavaScript
Raw Normal View History

import { Meteor } from 'meteor/meteor';
import sendGroupChatMsg from './methods/sendGroupChatMsg';
import clearPublicChatHistory from './methods/clearPublicChatHistory';
2019-07-31 10:37:50 +08:00
import startUserTyping from './methods/startUserTyping';
import stopUserTyping from './methods/stopUserTyping';
Meteor.methods({
sendGroupChatMsg,
clearPublicChatHistory,
2019-07-31 10:37:50 +08:00
startUserTyping,
stopUserTyping,
});