mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
|
|
FastRender.onAllRoutes(function() {
|
||
|
|
this.subscribe('boards');
|
||
|
|
});
|
||
|
|
|
||
|
|
FastRender.route('/b/:id/:slug', function({ id }) {
|
||
|
|
this.subscribe('board', id);
|
||
|
|
});
|