test #251

Merged
klaus merged 2 commits from test into main 2025-01-08 06:29:34 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit a26bb19b0f - Show all commits

View File

@ -14,6 +14,6 @@ class AdminAuditionApplicantController(private val service: AdminAuditionApplica
@DeleteMapping("/{id}")
fun deleteAuditionApplicant(@PathVariable id: Long) = ApiResponse.ok(
service.deleteAuditionApplicant(id),
"삭제되었습니다."
"오디션 지원이 취소 되었습니다."
)
}