mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
This required updating 3stack:presence because of the following bug: https://github.com/3stack-software/meteor-presence/pull/3
7 lines
156 B
JavaScript
7 lines
156 B
JavaScript
FastRender.onAllRoutes(function() {
|
|
this.subscribe('boards');
|
|
});
|
|
|
|
FastRender.route('/b/:id/:slug', function({ id }) {
|
|
this.subscribe('board', id);
|
|
});
|