constructor(private router: Router) {
     Meteor.autorun(() => {
         if (Lists.findOne()) {
             router.navigate(['/lists', Lists.findOne()._id]);
         }
     });
 }