Skip to content

Commit

Permalink
Fix : delete 204 -> 200으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
mingjuu committed Nov 7, 2024
1 parent 934196b commit 4e756a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ public ResponseEntity<Void> deleteAnnotation(
) {

annotationService.deleteAnnotation(documentId, annotationId);
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
return new ResponseEntity<>(HttpStatus.OK);
}
}

0 comments on commit 4e756a0

Please sign in to comment.