mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 11:01:38 -05:00
8 lines
No EOL
197 B
JavaScript
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;
|
|
} |