Пример #1
0
 /**
  * Method used to get the list of projects assigned to a given email address.
  *
  * @param   RemoteApi $client The connection resource
  * @param   array $auth Array of authentication information (email, password)
  * @param   boolean $only_customer_projects Whether to only include projects with customer integration or not
  * @return  array The list of projects
  */
 public function getUserAssignedProjects($client, $auth, $only_customer_projects = false)
 {
     $result = $client->getUserAssignedProjects($auth[0], $auth[1], $only_customer_projects);
     return $result;
 }