mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
11 lines
235 B
JavaScript
11 lines
235 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);
|
|
});
|
|
*/
|