Exemplo n.º 1
0
 public function __construct($accountSid, $authToken, $workspaceSid, $workerSid, $overrideBaseUrl = null, $overrideBaseWSUrl = null)
 {
     parent::__construct($accountSid, $authToken, $workspaceSid, $workerSid, null, $overrideBaseUrl, $overrideBaseWSUrl);
     $this->tasksUrl = $this->baseUrl . '/Tasks/**';
     $this->activityUrl = $this->baseUrl . '/Activities';
     $this->workerReservationsUrl = $this->resourceUrl . '/Reservations/**';
     //add permissions to fetch the list of activities, tasks, and worker reservations
     $this->allow($this->activityUrl, "GET", null, null);
     $this->allow($this->tasksUrl, "GET", null, null);
     $this->allow($this->workerReservationsUrl, "GET", null, null);
 }
 public function __construct($accountSid, $authToken, $workspaceSid, $overrideBaseUrl = null, $overrideBaseWSUrl = null)
 {
     parent::__construct($accountSid, $authToken, $workspaceSid, $workspaceSid, null, $overrideBaseUrl, $overrideBaseWSUrl);
 }