summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsoohwa <none@none.none>2017-10-01 10:15:54 +0900
committersoohwa <none@none.none>2017-10-01 10:15:54 +0900
commit42ca385a36ace9e4553526a40c6635e0b58a7c3c (patch)
tree6e4993e6ad1fba3daa67e193a551767722afda68
parentee94735922a7b992df82fce5efc1eb732fc994d3 (diff)
downloadwekan-42ca385a36ace9e4553526a40c6635e0b58a7c3c.tar.gz
wekan-42ca385a36ace9e4553526a40c6635e0b58a7c3c.tar.bz2
wekan-42ca385a36ace9e4553526a40c6635e0b58a7c3c.zip
Fix password not saved
-rw-r--r--models/users.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/users.js b/models/users.js
index 8d154c4b..8f8e446a 100644
--- a/models/users.js
+++ b/models/users.js
@@ -594,7 +594,7 @@ if (Meteor.isServer) {
const id = Accounts.createUser({
username: req.body.username,
email: req.body.email,
- password: 'default',
+ password: req.body.password,
from: 'admin',
});