public function index(JsonResponse $res)
 {
     $controller = $this;
     $gameScores = $this->gameScore->orderBy('id', 'asc')->get();
     return new JsonResponse(['data' => $gameScores->map(function ($gameScore) use($controller) {
         return $controller->serializeGameScore($gameScore);
     })]);
 }