chore: added publication to chakra ui skeleton

This commit is contained in:
Gabriel Grubba
2023-01-30 11:21:05 -03:00
parent 486fc136b1
commit a60b4a9116

View File

@@ -28,4 +28,10 @@ Meteor.startup(async () => {
url: 'https://forums.meteor.com',
});
}
// We publish the entire Links collection to all clients.
// In order to be fetched in real-time to the clients
Meteor.publish("links", function () {
return LinksCollection.find();
});
});