From 3eab815f68d7b95fd7e710762b51d330dc53468c Mon Sep 17 00:00:00 2001 From: uuuuuuuk Date: Sat, 16 Dec 2023 01:02:12 +0900 Subject: [PATCH] =?UTF-8?q?:memo:=20RecyclablesController=20=EC=97=90=20pr?= =?UTF-8?q?ocess=20=EB=A9=94=EC=84=9C=EB=93=9C=EC=9D=98=20=EC=97=94?= =?UTF-8?q?=EB=93=9C=ED=8F=AC=EC=9D=B8=ED=8A=B8=EB=A5=BC=20process=5Fimage?= =?UTF-8?q?=20=EC=97=90=EC=84=9C=20process=20=EB=A1=9C=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/recyclables/presentation/RecyclablesController.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/andreas311/miso/domain/recyclables/presentation/RecyclablesController.kt b/src/main/kotlin/andreas311/miso/domain/recyclables/presentation/RecyclablesController.kt index 1c892f35..5a92f5cb 100644 --- a/src/main/kotlin/andreas311/miso/domain/recyclables/presentation/RecyclablesController.kt +++ b/src/main/kotlin/andreas311/miso/domain/recyclables/presentation/RecyclablesController.kt @@ -41,7 +41,7 @@ class RecyclablesController( listAllRecyclablesService.execute() .let { ResponseEntity.status(HttpStatus.OK).body(it) } - @PostMapping("/process_image") + @PostMapping("/process") fun process(@RequestPart(value = "recyclables") multipartFile: MultipartFile): ResponseEntity = processRecyclablesImageService.execute(multipartFile) .let { ResponseEntity.status(HttpStatus.OK).body(it) }