post_page.js 193 B

12345678910111213141516
  1. /**
  2. * @file
  3. *
  4. *
  5. * User: marand
  6. * Date: 05/09/15
  7. * Time: 22:06
  8. */
  9. Template.postPage.helpers({
  10. comments: function () {
  11. return Comments.find({
  12. postId: this._id
  13. });
  14. }
  15. });