Blame view
both/methods/remove/collection-name.js
234 Bytes
c39994410
|
1 |
Meteor.methods({ |
5cb01249d
|
2 |
removeBoth( documentId ) { |
c39994410
|
3 4 5 6 7 8 9 10 11 |
check( documentId, String ); try { return Documents.remove( documentId ); } catch ( exception ) { throw new Meteor.Error( '500', `${ exception }` ); } } }); |