2019-05-09 14:32:38 +03:00
|
|
|
import { FastRender } from 'meteor/staringatlights:fast-render';
|
|
|
|
|
|
2015-10-30 03:05:43 +01:00
|
|
|
FastRender.onAllRoutes(function() {
|
|
|
|
|
this.subscribe('boards');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
FastRender.route('/b/:id/:slug', function({ id }) {
|
|
|
|
|
this.subscribe('board', id);
|
|
|
|
|
});
|