Vulcan/packages/telescope-users/lib/callbacks.js
2015-04-24 09:48:36 +09:00

9 lines
No EOL
288 B
JavaScript

/**
* Check if the user has completed their profile with an email and username.
* @param {Object} user
*/
function hasCompletedProfile (user) {
return !!Users.getEmail(user) && !!Users.getUserName(user);
}
Telescope.callbacks.register("profileCompletedChecks", hasCompletedProfile);