public IActionResult GetNewsByAuthorId(int authorId)
        {
            var news = _authorsService.GetNewsByAuthorId(authorId);

            return(Ok(news));
        }