Fix password not saved

This commit is contained in:
soohwa 2017-10-01 10:15:54 +09:00
parent ee94735922
commit 42ca385a36

View file

@ -594,7 +594,7 @@ if (Meteor.isServer) {
const id = Accounts.createUser({ const id = Accounts.createUser({
username: req.body.username, username: req.body.username,
email: req.body.email, email: req.body.email,
password: 'default', password: req.body.password,
from: 'admin', from: 'admin',
}); });