public IActionResult AddFriend(int friendUserId)
 {
     if (_storage.AddFriend(User.Identity.Name, friendUserId))
     {
         return(NoContent());
     }
     return(NotFound());
 }