Skip to content
This repository has been archived by the owner on Sep 14, 2019. It is now read-only.

Commit

Permalink
Added Emailaddress to Project-Object
Browse files Browse the repository at this point in the history
  • Loading branch information
slue committed Apr 11, 2016
1 parent 777e48e commit f48a80e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Rossedman/Teamwork/Project.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,5 +173,16 @@ public function tasklists($args = null)
return $this->client->get("$this->endpoint/$this->id/tasklists", $args)->response();
}

/**
* Emailaddresses
* GET /projects/{project_id}/emailaddress.json
*
* @return [type] [description]
*/
public function emailaddress($args = null)
{
return $this->client->get("$this->endpoint/$this->id/emailaddress", $args)->response();
}


}

0 comments on commit f48a80e

Please sign in to comment.