public IActionResult GetPhotoById(int id, int userId)
        {
            User user = userDAO.GetUser(User.Identity.Name);

            userId = user.Id;
            DeepPhoto photo = photoDAO.GetDeepPhotoById(id, userId);

            return(Ok(photo));
        }