plapczyn / webrew

The world's foremost coffee related social network
2 stars 0 forks source link

Home | Limit cards #28

Open petelapczynski opened 6 years ago

petelapczynski commented 6 years ago

Homepage will show the latest 15 brews only, all others will be available on the brewbrowse page.

petelapczynski commented 6 years ago

publisher update - coffees.js -

Meteor.publish('webrewHome', function() { return Coffees.find({},{ sort: { CreatedAt: -1 }, limit: 100}); });