Vulcan/lib/users.js
2012-10-01 13:35:20 +09:00

8 lines
No EOL
197 B
JavaScript

// Useful methods on users
getCurrentUserEmail = function(){
return Meteor.user() ? Meteor.user().emails[0].address : '';
}
userProfileComplete = function(user) {
return !!user.profile.email;
}