summaryrefslogtreecommitdiffstats
path: root/server/publications/fast-render.js
blob: 4829ad574bcd3a88bb121931584f1c446ebe9ef5 (plain)
1
2
3
4
5
6
7
8
9
import { FastRender } from 'meteor/staringatlights:fast-render';

FastRender.onAllRoutes(function() {
  this.subscribe('boards');
});

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