updateComment

@PatchMapping(value = ["/{commentId}"])
@PreAuthorize(value = "isAuthenticated() and @commentValidator.isAuthor(#articleId, #commentId, #userDetails.username)")
fun updateComment(@PathVariable articleId: Long, @PathVariable commentId: Long, @Valid @RequestBody commentForm: CommentForm, @AuthenticationPrincipal userDetails: UserDetails): ResponseEntity<CommentResponse>