7 lines
156 B
JavaScript
7 lines
156 B
JavaScript
|
import { Meteor } from 'meteor/meteor';
|
||
|
import removeUserInformation from './methods/removeUserInformation';
|
||
|
|
||
|
Meteor.methods({
|
||
|
removeUserInformation,
|
||
|
});
|