From ed1a8678d897fe8985ccfd04bd882f9426f40afe Mon Sep 17 00:00:00 2001 From: Hong0329 Date: Fri, 23 Aug 2024 14:25:26 +0900 Subject: [PATCH] fix cli request --- .../WableServer/api/lck/controller/LckGameTypeController.java | 2 +- .../dto/response/InfoNotificationAllResponseDto.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WableServer/src/main/java/com/wable/www/WableServer/api/lck/controller/LckGameTypeController.java b/WableServer/src/main/java/com/wable/www/WableServer/api/lck/controller/LckGameTypeController.java index c08e704..b1ba838 100644 --- a/WableServer/src/main/java/com/wable/www/WableServer/api/lck/controller/LckGameTypeController.java +++ b/WableServer/src/main/java/com/wable/www/WableServer/api/lck/controller/LckGameTypeController.java @@ -21,7 +21,7 @@ @SecurityRequirement(name = "JWT Auth") @Tag(name="LCK Game Type 관련",description = "LCK Game Type Api Document") public class LckGameTypeController { - private LckGameTypeQueryService lckGameTypeQueryService; + private final LckGameTypeQueryService lckGameTypeQueryService; @GetMapping("v1/information/gametype") @Operation(summary = "Lck Game Type API입니다.", description = "LckGameTypeGet") diff --git a/WableServer/src/main/java/com/wable/www/WableServer/api/notification/dto/response/InfoNotificationAllResponseDto.java b/WableServer/src/main/java/com/wable/www/WableServer/api/notification/dto/response/InfoNotificationAllResponseDto.java index 07819ff..80868af 100644 --- a/WableServer/src/main/java/com/wable/www/WableServer/api/notification/dto/response/InfoNotificationAllResponseDto.java +++ b/WableServer/src/main/java/com/wable/www/WableServer/api/notification/dto/response/InfoNotificationAllResponseDto.java @@ -4,7 +4,7 @@ import com.wable.www.WableServer.common.util.TimeUtilCustom; public record InfoNotificationAllResponseDto( - String InfoNotificationType, + String infoNotificationType, String time, String imageUrl ) {