From 4e756a0c56259d1c5dd024f1f247c9f639afbc0e Mon Sep 17 00:00:00 2001 From: mingjuu Date: Thu, 7 Nov 2024 23:01:17 +0900 Subject: [PATCH] =?UTF-8?q?Fix=20:=20delete=20204=20->=20200=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../notai/annotation/presentation/AnnotationController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/notai/annotation/presentation/AnnotationController.java b/src/main/java/notai/annotation/presentation/AnnotationController.java index a57414c..474f69b 100644 --- a/src/main/java/notai/annotation/presentation/AnnotationController.java +++ b/src/main/java/notai/annotation/presentation/AnnotationController.java @@ -76,6 +76,6 @@ public ResponseEntity deleteAnnotation( ) { annotationService.deleteAnnotation(documentId, annotationId); - return new ResponseEntity<>(HttpStatus.NO_CONTENT); + return new ResponseEntity<>(HttpStatus.OK); } }