mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
Adding edit and delete users from system.
This commit is contained in:
parent
07a8496542
commit
45b78101c8
5 changed files with 88 additions and 5 deletions
|
|
@ -29,4 +29,10 @@ Meteor.methods({
|
|||
}
|
||||
});
|
||||
},
|
||||
'change.userPass' (usersId, password) {
|
||||
check(usersId, String);
|
||||
check(password, String);
|
||||
|
||||
return Accounts.setPassword(usersId, password);
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue