Vulcan/packages/telescope-users/lib/callbacks.js

9 lines
288 B
JavaScript
Raw Normal View History

/**
* 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);
}
2015-04-24 09:48:36 +09:00
Telescope.callbacks.register("profileCompletedChecks", hasCompletedProfile);