mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
10 lines
249 B
JavaScript
10 lines
249 B
JavaScript
Posts = new Meteor.Collection('posts');
|
|
Meteor.subscribe('posts');
|
|
|
|
Comments = new Meteor.Collection('comments');
|
|
Meteor.subscribe('comments');
|
|
|
|
MyVotes = new Meteor.Collection('myvotes');
|
|
Meteor.subscribe('myvotes');
|
|
|
|
Session.set('state', 'list');
|