1 2 3 4 5 |
Meteor.publish('userData', function () { return Meteor.users.find({}, {fields: {profile: 1}}); }); |
Thanks Colby!
1 2 3 4 5 |
Meteor.publish('userData', function () { return Meteor.users.find({}, {fields: {profile: 1}}); }); |
Thanks Colby!