deleteComment

@DeleteMapping(value = ["/{commentId}"])
@PreAuthorize(value = "isAuthenticated() and @commentValidator.isAuthor(#articleId, #commentId, #userDetails.username)")
fun deleteComment(@PathVariable articleId: Long, @PathVariable commentId: Long, @AuthenticationPrincipal userDetails: UserDetails): ResponseEntity<Unit>