Adding edit and delete users from system.

This commit is contained in:
Brian McGonagill 2023-06-09 13:38:10 -05:00
parent 07a8496542
commit 45b78101c8
5 changed files with 88 additions and 5 deletions

View file

@ -29,4 +29,10 @@ Meteor.methods({
}
});
},
'change.userPass' (usersId, password) {
check(usersId, String);
check(password, String);
return Accounts.setPassword(usersId, password);
},
});