mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
9 lines
229 B
JavaScript
9 lines
229 B
JavaScript
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);
|
|
});
|