감사로그,에러로그,추론도엽관리 URL Prefix 변경

This commit is contained in:
2026-01-08 14:11:01 +09:00
parent 6b1793b499
commit 455112fed2
3 changed files with 3 additions and 3 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/logs/audit")
public class AuditLogApiController {
private final AuditLogService auditLogService;

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/logs/system"})
public class ErrorLogApiController {
private final ErrorLogService errorLogService;

View File

@@ -27,7 +27,7 @@ import org.springframework.web.bind.annotation.RestController;
@Tag(name = "도엽 관리", description = "도엽 관리 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("/api/scene")
@RequestMapping("/api/imagery/mapsheet")
public class MapInkxMngApiController {
private final MapInkxMngService mapInkxMngService;