publications.js 208 B

12345678910111213141516
  1. /**
  2. * @file
  3. *
  4. *
  5. * User: marand
  6. * Date: 30/08/15
  7. * Time: 11:53
  8. */
  9. Meteor.publish('posts', function() {
  10. return Posts.find();
  11. });
  12. Meteor.publish('comments', function() {
  13. return Comments.find();
  14. });