public function actionIndex()
 {
     //@todo: move to cron job or something
     Game::removeInactive();
     $Games = Game::find()->all();
     return $this->render('index', ['Games' => $Games]);
 }