refactor: audit 확인 서비스 메서드명 수정

This commit is contained in:
이상진 2025-09-18 15:27:25 +09:00
parent 89ada4b146
commit 2f8c2a6a55
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ class ScheduleService(
}
@Transactional(readOnly = true)
fun findScheduleAuditOrUnknown(id: Long): AuditInfo {
fun findScheduleAudit(id: Long): AuditInfo {
log.info { "[ScheduleService.findDetail] 일정 감사 정보 조회 시작: id=$id" }
val schedule: ScheduleEntity = findOrThrow(id)

View File

@ -30,7 +30,7 @@ class AdminScheduleController(
override fun findScheduleAudit(
@PathVariable("id") id: Long
): ResponseEntity<CommonApiResponse<AuditInfo>> {
val response = scheduleService.findScheduleAuditOrUnknown(id)
val response = scheduleService.findScheduleAudit(id)
return ResponseEntity.ok(CommonApiResponse(response))
}