Meteor.publishComposite('userWithFollowers', function(username) {
    return {
        find: function() {
            return Meteor.users.find({username: username}, {fields: requireCollectionFields.user.removeServices});
        },