2018-03-10 02:42:14 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import sendGroupChatMsg from './methods/sendGroupChatMsg';
|
2018-08-03 01:23:20 +08:00
|
|
|
import clearPublicChatHistory from './methods/clearPublicChatHistory';
|
2019-07-31 10:37:50 +08:00
|
|
|
import startUserTyping from './methods/startUserTyping';
|
|
|
|
import stopUserTyping from './methods/stopUserTyping';
|
2018-03-10 02:42:14 +08:00
|
|
|
|
2018-11-06 03:30:37 +08:00
|
|
|
Meteor.methods({
|
2018-03-10 02:42:14 +08:00
|
|
|
sendGroupChatMsg,
|
2018-08-03 01:23:20 +08:00
|
|
|
clearPublicChatHistory,
|
2019-07-31 10:37:50 +08:00
|
|
|
startUserTyping,
|
|
|
|
stopUserTyping,
|
2018-11-06 03:30:37 +08:00
|
|
|
});
|