collection-name.js 238 Bytes
Meteor.methods({
  removeServerOnly( argument ) {
    check( documentId, String );

    try {
      return Documents.remove( documentId );
    } catch ( exception ) {
      throw new Meteor.Error( '500', `${ exception }` );
    }
  }
});