mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
Accounts.onCreateUser(function(options, user) {
|
|
if (options.profile)
|
|
user.profile = options.profile;
|
|
|
|
// If this is the first user going into the database, make them an admin
|
|
if (Meteor.users.find().count() === 0)
|
|
user.admin = true;
|
|
|
|
return user;
|
|
}); |