How to access FlowRouter subscriptions in Meteor template helpers?
问题 it seems like I can't access a FlowRouter template subscription in my helper. How can you do this? In my server code: Meteor.publish('AllUsers', function() { return Meteor.users.find({}, {fields: {profile: 1}}); }) In my router code: var userRoutes = FlowRouter.group({ subscriptions: function(params, queryParams) { this.register('AllUsers', Meteor.subscribe('AllUsers')); }, }); In my template code: {{#if checkFlowRouterSubs}} {{#each getTheUsers}} {{>userPartial}} {{/each}} {{/if}} In my