From 2a6f1cfb950a0ab76707656f01eea9307c96971a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?andres=20bri=C3=B1ez?= Date: Thu, 26 Oct 2023 11:07:37 -0500 Subject: [PATCH] =?UTF-8?q?Se=20continua=20comentando=20las=20anotaciones?= =?UTF-8?q?=20swagger=20del=20m=C3=A9todo=20homt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../infraestructure/controllers/resources/HomeController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/ProyectoIntegrador/sistematransaccionesbancarias/infraestructure/controllers/resources/HomeController.java b/src/main/java/com/ProyectoIntegrador/sistematransaccionesbancarias/infraestructure/controllers/resources/HomeController.java index f090f89..89111c1 100644 --- a/src/main/java/com/ProyectoIntegrador/sistematransaccionesbancarias/infraestructure/controllers/resources/HomeController.java +++ b/src/main/java/com/ProyectoIntegrador/sistematransaccionesbancarias/infraestructure/controllers/resources/HomeController.java @@ -72,12 +72,12 @@ public HomeController(CuentaJPARepository cuentaJPARepository, BolsilloJPAReposi } - @Operation(summary = "Página de inicio", description = "Muestra la página de inicio con la información de la cuenta y los bolsillos del usuario logeado") + /* @Operation(summary = "Página de inicio", description = "Muestra la página de inicio con la información de la cuenta y los bolsillos del usuario logeado") @ApiResponses(value = { @ApiResponse(responseCode = "200", description = "Página de inicio mostrada correctamente", content = @Content(mediaType = "text/html", examples = @ExampleObject(value = "

Información cuenta

"))), @ApiResponse(responseCode = "401", description = "No se ha iniciado sesión", content = @Content(mediaType = "text/html", examples = @ExampleObject(value = "

Iniciar sesión

"))), @ApiResponse(responseCode = "403", description = "Acceso denegado", content = @Content(mediaType = "text/html", examples = @ExampleObject(value = "

Acceso denegado

"))), - }) + })*/ // @Parameter(description = "Mensaje a mostrar en la página de inicio", example = "Cuenta creada correctamente") @GetMapping("/home") public String home( Model model,HttpServletRequest request, @ModelAttribute("mensaje") String mensajeRecibido) {