Files
PetitTetonMeteor/imports/ui/helpers.js

8 lines
169 B
JavaScript
Raw Normal View History

// General use helpers - available to all views.
UI.registerHelper('currentUserName', function() {
if(Meteor.user()){
return Meteor.user().emails[0].address;
}
});