cards.js 109 B

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