2018-03-10 02:42:14 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import mapToAcl from '/imports/startup/mapToAcl';
|
|
|
|
import sendGroupChatMsg from './methods/sendGroupChatMsg';
|
2018-08-03 01:23:20 +08:00
|
|
|
import clearPublicChatHistory from './methods/clearPublicChatHistory';
|
2018-03-10 02:42:14 +08:00
|
|
|
|
2018-08-03 01:23:20 +08:00
|
|
|
Meteor.methods(mapToAcl(['methods.sendGroupChatMsg', 'methods.clearPublicChatHistory'], {
|
2018-03-10 02:42:14 +08:00
|
|
|
sendGroupChatMsg,
|
2018-08-03 01:23:20 +08:00
|
|
|
clearPublicChatHistory,
|
2018-03-10 02:42:14 +08:00
|
|
|
}));
|