Skip to content

Instantly share code, notes, and snippets.

@ericterpstra
Created December 9, 2015 16:19
Show Gist options
  • Save ericterpstra/97070f8b5a1f73301dd0 to your computer and use it in GitHub Desktop.
Save ericterpstra/97070f8b5a1f73301dd0 to your computer and use it in GitHub Desktop.
meteor transform in pub
Meteor.publish('pubname', function(doTransform) {
let options = {};
if (doTransform) {
options.transform = function(doc) {
doc.username = 'johndoe';
}
} else {
options.transform = null;
}
return MyCollection.find({},options);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment