post_page.js 119 B

1234567
  1. Template.postPage.helpers({
  2. comments: function () {
  3. return Comments.find({
  4. postId: this._id
  5. });
  6. }
  7. });