/**
  * Action Show
  *
  * @param array $variables Variables
  *
  * @return Response Response
  */
 private function actionIndex(Request $request, Response $response)
 {
     $elements = $this->rest_service->getElements($request);
     return $response->withCollection($elements);
 }