public async Task <IActionResult> GetDetails(string slug, long commentId, CreateOrEditCommentDto model)
        {
            Comment comment = await _commentService.FetchCommentByIdAsync(commentId);

            return(StatusCodeAndDtoWrapper.BuildSuccess(CommentDetailsDto.Build(comment)));
        }