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