mirror of
https://github.com/wekan/wekan.git
synced 2026-01-04 00:28:49 +01:00
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('/');
|