mirror of
https://github.com/vale981/Vulcan
synced 2025-03-12 13:36:37 -04:00
5 lines
195 B
JavaScript
5 lines
195 B
JavaScript
![]() |
Meteor.accounts.onCreateUser(function(options, extra, user){
|
||
|
user.created_at=new Date().getTime();
|
||
|
user.email_hash=CryptoJS.MD5(options.email.trim().toLowerCase()).toString();
|
||
|
return user;
|
||
|
});
|