Added waitOn subscriptions and required publications. Expect a warning about autopublish now.
4 lines
144 B
JavaScript
4 lines
144 B
JavaScript
Meteor.publish("characterList",function(userId){
|
|
//TODO also return characters this user can view
|
|
return Characters.find({owner: userId});
|
|
}); |