8 lines
199 B
JavaScript
8 lines
199 B
JavaScript
import mapToAcl from '/imports/startup/mapToAcl';
|
|
import { Meteor } from 'meteor/meteor';
|
|
import sendChat from './methods/sendChat';
|
|
|
|
Meteor.methods(mapToAcl(['methods.sendChat'], {
|
|
sendChat,
|
|
}));
|