mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Current file storing to MongoDB code was not yet compatible with newer Node.js. Thanks to eskogito and xet7 ! Fixes #3320
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);
|
|
});
|