Skip to content

Commit

Permalink
Add first and last name to default admin user
Browse files Browse the repository at this point in the history
  • Loading branch information
nathasm authored and petebacondarwin committed Apr 19, 2013
1 parent 88fa352 commit 82f4ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/initDB.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var createDocument = function(collection, doc, done) {
});
};

var adminUser = { email: '[email protected]', password: 'changeme', admin: true};
var adminUser = { email: '[email protected]', password: 'changeme', admin: true, firstName: 'Admin', lastName: 'User' };
console.log('Generating admin user...', adminUser);

console.log('Checking it is not already created...');
Expand Down

0 comments on commit 82f4ffd

Please sign in to comment.