Skip to content

Commit

Permalink
Merge pull request #59 from IsraelOrtuno/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
IsraelOrtuno authored Nov 12, 2018
2 parents 2ef2654 + 3988d73 commit a2b2217
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/Resources/Deals.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,19 @@ public function duplicate($id)
* @param $id The deal id
* @return Response
*/
public function emailMessages($id)
public function mailMessages($id)
{
return $this->request->get(':id/emailMessages', compact('id'));
return $this->request->get(':id/mailMessages', compact('id'));
}

/**
* Get the files for a deal.
*
* @param $id The deal id
* @return Response
*/
public function files($id)
{
return $this->request->get(':id/files', compact('id'));
}
}

0 comments on commit a2b2217

Please sign in to comment.