Log API Version Code reback - Daniel C No.4

This commit is contained in:
sanghyeonhd
2025-11-21 14:35:49 +09:00
parent 252ce26f7e
commit 0cafdc241b
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.RestController;
@Tag(name = "감사 로그", description = "감사 로그 관리 API")
@RequiredArgsConstructor
@RestController
@RequestMapping("/api/log/audit")
@RequestMapping({"/api/log/audit", "/v1/api/log/audit"})
public class AuditLogApiController {
private final AuditLogCoreService auditLogCoreService;

View File

@@ -17,7 +17,7 @@ import org.springframework.web.bind.annotation.RestController;
@Tag(name = "에러 로그", description = "에러 로그 관리 API")
@RequiredArgsConstructor
@RestController
@RequestMapping("/api/log/error")
@RequestMapping({"/api/log/error", "/v1/api/log/error"})
public class ErrorLogApiController {
private final ErrorLogCoreService errorLogCoreService;