First user is admin only if not running in sandstorm

reviewable/pr970/r2
Julen Landa Alustiza 8 years ago
parent 1218e114be
commit 28a1dd677c
  1. 2
      models/users.js

@ -409,7 +409,7 @@ if (Meteor.isServer) {
});
Accounts.onCreateUser((options, user) => {
const userCount = Users.find().count();
if (userCount === 0){
if (!isSandstorm && userCount === 0 ){
user.isAdmin = true;
return user;
}

Loading…
Cancel
Save