update to meteor version 2.12

This commit is contained in:
Brian McGonagill 2023-06-09 09:51:11 -05:00
parent 5b49720557
commit 07a8496542
7 changed files with 77 additions and 175 deletions

View file

@ -31,4 +31,12 @@ Meteor.methods({
});
}
},
'edit.userPass' (userId, newPassword) {
},
'delete.userFromSys' (userId) {
check(userId, String);
return Meteor.users.remove({ _id: userId });
},
});