Blame view

both/methods/remove/collection-name.js 234 Bytes
c39994410   Ryan Glover   wip converting to...
1
  Meteor.methods({
5cb01249d   Ryan Glover   clean up and addi...
2
    removeBoth( documentId ) {
c39994410   Ryan Glover   wip converting to...
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 }` );
      }
    }
  });