mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
fixed wrong arguments
This commit is contained in:
parent
e9c3d1c297
commit
60524e4c05
1 changed files with 2 additions and 2 deletions
|
@ -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 || {};
|
||||
|
|
Loading…
Add table
Reference in a new issue