2017-06-06 03:12:06 +08:00
|
|
|
import mapToAcl from '/imports/startup/mapToAcl';
|
2016-10-19 20:18:47 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
2016-10-21 19:56:03 +08:00
|
|
|
import sendChat from './methods/sendChat';
|
2016-10-19 20:18:47 +08:00
|
|
|
|
2017-06-06 00:40:36 +08:00
|
|
|
Meteor.methods(mapToAcl(['methods.sendChat'], {
|
2016-10-21 19:56:03 +08:00
|
|
|
sendChat,
|
2017-06-01 01:54:43 +08:00
|
|
|
}));
|