wekan/packages/kadira-flow-router/test/client/_helpers.js
Lauri Ojansivu 73e265d8fd Include to Wekan packages directory contents, so that meteor command would build all directly.
This also simplifies build scripts.

Thanks to xet7 !
2019-04-20 15:18:33 +03:00

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('/');