I\'d like to be able to mark users as \"admin\" in the Meteor auth system, and allow that user to do special things, as well as show some gui elements I wouldn\'t show if they w
You can also add properties in "profile" attribute of the user. profile attribute is alrealy populated to client side :
Meteor.users.update({_id: userId}, {$set: {'profile.admin': 1}}); //on client side Meteor.user().profile.admin