public async Task <ActionResult <StoryDetailsDto> > Get(Guid storyId)
        {
            var story = await _storyService.GetAsync(storyId);

            if (story is null)
            {
                return(NotFound());
            }

            return(Ok(story));
        }