mirror of
https://github.com/wekan/wekan.git
synced 2026-01-03 16:18:49 +01:00
Implement fast-render
This required updating 3stack:presence because of the following bug: https://github.com/3stack-software/meteor-presence/pull/3
This commit is contained in:
parent
dd3cdf3945
commit
41b23f88ae
5 changed files with 15 additions and 1 deletions
7
server/publications/fast-render.js
Normal file
7
server/publications/fast-render.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
FastRender.onAllRoutes(function() {
|
||||
this.subscribe('boards');
|
||||
});
|
||||
|
||||
FastRender.route('/b/:id/:slug', function({ id }) {
|
||||
this.subscribe('board', id);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue