Blame view

server/publications/template.js 127 Bytes
0ccda7775   Ryan Glover   add support for E...
1
2
3
  Meteor.publish( 'template', function() {
    return Collection.find( { 'owner': this.userId }, { fields: { 'owner': 1 } } );
  });