[#44] 매장 기능 도입 #45

Merged
pricelees merged 116 commits from feat/#44 into main 2025-09-20 03:15:06 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 2f8c2a6a55 - Show all commits

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))
}