cards.js 104 B

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