mirror of
https://github.com/wekan/wekan.git
synced 2025-12-22 02:10:12 +01:00
Fixes: #5533
Fixes: #5548
Revert "Switch from kadira:flow-router to ostrio:flow-router-extra"
This reverts commit 718c1a393d.
10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
GetSub = function (name) {
|
|
for(var id in Meteor.connection._subscriptions) {
|
|
var sub = Meteor.connection._subscriptions[id];
|
|
if(name === sub.name) {
|
|
return sub;
|
|
}
|
|
}
|
|
};
|
|
|
|
FlowRouter.route('/');
|