users.js 221 B

1234567891011
  1. Meteor.publish('user-miniprofile', function(userId) {
  2. check(userId, String);
  3. return Users.find(userId, {
  4. fields: {
  5. 'username': 1,
  6. 'profile.fullname': 1,
  7. 'profile.avatarUrl': 1,
  8. },
  9. });
  10. });