public IHttpActionResult GetAllByUsername(string userName)
        {
            var tweets = _tweetRepository.GetAllByUsername(userName);

            return(Ok(tweets));
        }