fixed wrong arguments

This commit is contained in:
Sacha Greif 2012-10-18 17:20:20 +09:00
parent e9c3d1c297
commit 60524e4c05

View file

@ -1,5 +1,5 @@
Accounts.onCreateUser(function(options, extra, user){
_.extend(user, extra);
Accounts.onCreateUser(function(options, user){
_.extend(user, options);
user.karma = 0;
user.profile = user.profile || {};