Skip to content

Commit

Permalink
Merge pull request #79 from leik-software/master
Browse files Browse the repository at this point in the history
fixed deal remove participant endpoint
  • Loading branch information
IsraelOrtuno authored Dec 3, 2019
2 parents b74aa31 + 3e8d769 commit 161e27d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/Deals.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function participants($id, $options = [])
*/
public function deleteParticipant($id, $deal_participant_id)
{
return $this->request->delete(':id/participants', compact('id', 'deal_participant_id'));
return $this->request->delete(':id/participants/:deal_participant_id', compact('id', 'deal_participant_id'));
}

/**
Expand Down

0 comments on commit 161e27d

Please sign in to comment.