meteor-rest
meteor-rest copied to clipboard
replace the invocation with the real one
- to support the Meteor.userId() in the method
👍
this package resolved all my Simple:Rest issues
To get this to work, I also had to add 'ddp-common' in the package.js file:
api.use([
'check',
'ddp',
'ddp-common', // <--
'ejson',
'meteor',
'mongo',
'simple:[email protected]',
'underscore',
'webapp',
], 'server');