summaryrefslogtreecommitdiffstats
path: root/server/publications/cards.js
blob: 61210ce56056e71b1928f1326141cf7288013bde (plain)
1
2
3
4
Meteor.publish('card', cardId => {
  check(cardId, String);
  return Cards.find({ _id: cardId });
});