I want to have client-side access for a certain set of fields for ALL users while I would like to have access to even more fields for the current user only. How do I go abou
Right from Meteor documentation:
Meteor.publish("userData", function () { return Meteor.users.find({_id: this.userId}, {fields: {'other': 1, 'things': 1}}); });
And also:
Meteor.publish("allUserData", function () { return Meteor.users.find({}, {fields: {'nested.things': 1}}); });
Hope this helps.