public IActionResult GetNewsItemsByAuthorId(int id)
 {
     return(Ok(_newsItemService.GetNewsByAuthor(id)));
 }