mirror of
https://github.com/wekan/wekan.git
synced 2026-01-01 15:18:49 +01:00
5 lines
109 B
JavaScript
5 lines
109 B
JavaScript
|
|
Meteor.publish('card', function(cardId) {
|
||
|
|
check(cardId, String);
|
||
|
|
return Cards.find({ _id: cardId });
|
||
|
|
});
|