cards.js 102 B

1234
  1. Meteor.publish('card', cardId => {
  2. check(cardId, String);
  3. return Cards.find({ _id: cardId });
  4. });