createComment

@PostMapping
@PreAuthorize(value = "isAuthenticated()")
@ResponseStatus(value = HttpStatus.CREATED)
fun createComment(@AuthenticationPrincipal userDetails: UserDetails, @PathVariable articleId: Long, @Valid @RequestBody commentForm: CommentForm): ResponseEntity<CommentResponse>