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

Commit

Permalink
Merge pull request #21 from slue/master
Browse files Browse the repository at this point in the history
Added Emailaddress to Project-Object
  • Loading branch information
rossedman committed Apr 12, 2016
2 parents 777e48e + 8b85848 commit d56e9d9
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 d56e9d9

Please sign in to comment.