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