Exemplo n.º 1
0
 public function getProductListsJson()
 {
     $productUrl = $this->input->post('productUrl');
     if (empty($productUrl)) {
         throw new \Aws\Sns\Exception\NotFoundException('Product Not Found');
     }
     $userId = $this->ion_auth->get_user_id();
     $productLists = $this->product_model->getAllProductListsWithMatchByUrl($productUrl, $userId);
     $this->jsonResponse($productLists);
 }