Vulcan/server/users.js
2012-10-01 13:08:46 +10:00

25 lines
No EOL
691 B
JavaScript

Meteor.accounts.onCreateUser(function(options, extra, user){
_.extend(user, extra);
user.karma = 0;
user.profile = user.profile || {};
if (options.email)
user.profile.email = options.email;
if (user.profile.email)
user.email_hash = CryptoJS.MD5(user.profile.email.trim().toLowerCase()).toString();
if (!user.profile.name)
user.profile.name = user.username;
return user;
});
// FIXME -- don't use this yet, until a) we are sure it's the right approach
// b) we also update their profile at the same time.
Meteor.methods({
changeEmail: function(newEmail) {
Meteor.users.update(Meteor.userId(), {$set: {emails: [{address: newEmail}]}});
}
});