Skip to content

Commit

Permalink
Merge pull request #131 from edvinaskrucas/master
Browse files Browse the repository at this point in the history
Fix deal product deletion endpoint
  • Loading branch information
IsraelOrtuno authored Jun 14, 2023
2 parents 52f698e + a5e5321 commit 669ed53
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 @@ -120,7 +120,7 @@ public function updateProduct($id, $deal_product_id, $item_price, $quantity, $op
public function deleteProduct($id, $product_attachment_id)
{
return $this->request->delete(
':id/products',
':id/products/:product_attachment_id',
compact('id', 'product_attachment_id')
);
}
Expand Down

0 comments on commit 669ed53

Please sign in to comment.