bigbluebutton-Github/bigbluebutton-html5/imports/api/1.1/slides/server/methods.js
Klaus Klein ca09b69555 Merge branch 'Acl' into Refactor2x
* Acl:
  Add check to undefined role
  Lint to eslint
  Missing merge file
  Fix lint problems
  Change Acl lookup
  Change ACL to be more extensible
  Fix a few review comments
  Acl refactor working
  Mostly working, still problems with user subs
  Code refactored
2017-06-19 11:28:17 -03:00

9 lines
286 B
JavaScript

import { Meteor } from 'meteor/meteor';
import mapToAcl from '/imports/startup/mapToAcl';
import switchSlide from './methods/switchSlide';
Meteor.methods(mapToAcl(['methods.switchSlide', 'methods.switchSlideMessage'], {
switchSlide,
switchSlideMessage: switchSlide, // legacy
}));