mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
6 lines
105 B
JavaScript
6 lines
105 B
JavaScript
![]() |
Posts = new Meteor.Collection('posts');
|
||
|
|
||
|
Meteor.publish('posts', function() {
|
||
|
return Posts.find();
|
||
|
});
|