Beispiel #1
0
 /**
  * Get dashboards indicator by dasInd_uid
  *
  * @param string $dasInd_uid {@from path}
  *
  * @author Jenny Murillo <*****@*****.**>
  * @copyright Colosa - Bolivia
  *
  * @url GET /indicator/:dasInd_uid
  *
  */
 public function doGetDashboardIndicator($dasInd_uid)
 {
     try {
         $Dashboard = new \ProcessMaker\BusinessModel\Dashboard();
         $response = $Dashboard->getIndicator($dasInd_uid);
         return $response;
     } catch (\Exception $e) {
         throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()));
     }
 }