public async Task <IActionResult> Post(AddPageToStoryModel model)
 {
     try
     {
         return(Ok(await _pageService.AddPageToStory(model.Content, model.StoryId)));
     }
     catch (Exception ex)
     {
         return(BadRequest(ex.Message));
     }
 }