Files
AVEF/imports/ui/helpers.js
Wynne Crisman 94000458e4 Copied starter Meteor App files.
Cut and paste of the BasicMeteorApp.
2018-07-30 14:15:39 -07:00

8 lines
169 B
JavaScript

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