Exemplo n.º 1
0
 /**
  * Return all comments on a wishlist.
  *
  * @author Kuldeep Dangi <*****@*****.**>
  */
 public function actionGetWishlistComments($id)
 {
     $model = new UserFeed();
     $this->result['data'] = $model->getWishlistComments($id);
     $this->result['success'] = true;
     $this->sendResponse($this->result);
 }