summaryrefslogtreecommitdiffstats
path: root/server/publications/fast-render.js
blob: e28b6f2e1ea555b7a9791a2fe30aa750296e3865 (plain)
1
2
3
4
5
6
7
FastRender.onAllRoutes(function() {
  this.subscribe('boards');
});

FastRender.route('/b/:id/:slug', function({ id }) {
  this.subscribe('board', id);
});