Re-route server side from Meteor.publish()

Hi guys,

I was wondering how could I redirect user from Meteor.publish() server side? I’m in this situation where I enrol user and he gets the link with token, then when he gets to that link I subscribe to it so I can welcome that user with its name, but in case someone tries playing with it I would like to redirect to login page, so without too much messing around server side redirect would be awesome? Is there a way?

Meteor.publish('enrolledUser', function(token) {
    return Meteor.users.find({"services.password.reset.token": token}, {fields: {
      profile: 1,
    }});
  });

Thanks!