Publishing our games
For now we'll just allow all our games to flow into the client (in a production app we'd probably limit it to 10 or something and use pagination).
server/publications.js
Meteor.publish('teams', function(){
return Teams.find();
});
Meteor.publish('games', function(){
return Games.find();
});