mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
typo fix
This commit is contained in:
parent
1eb72079b4
commit
512cc7707d
2 changed files with 6 additions and 1 deletions
|
@ -51,7 +51,7 @@
|
|||
"extraCode": "Extra Code",
|
||||
"emailFooter": "Email Footer",
|
||||
"notes": "Notes",
|
||||
"debug": "Debug Mode"
|
||||
"debug": "Debug Mode",
|
||||
|
||||
// Settings Fieldsets
|
||||
"general": "General",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
Accounts.onCreateUser(function(options, user){
|
||||
|
||||
// ------------------------------ Properties ------------------------------ //
|
||||
|
||||
var userProperties = {
|
||||
profile: options.profile || {},
|
||||
karma: 0,
|
||||
|
@ -45,6 +48,8 @@ Accounts.onCreateUser(function(options, user){
|
|||
clog('// User object:')
|
||||
clog(user)
|
||||
|
||||
// ------------------------------ Analytics ------------------------------ //
|
||||
|
||||
trackEvent('new user', {username: user.username, email: user.profile.email});
|
||||
|
||||
return user;
|
||||
|
|
Loading…
Add table
Reference in a new issue