awesto / django-shop

A Django based shop system
http://www.django-shop.org
BSD 3-Clause "New" or "Revised" License
3.17k stars 1.04k forks source link

Clear Cart functionality (aka delete all items in Cart at once) #866

Open SaadBazaz opened 2 years ago

SaadBazaz commented 2 years ago

Feature Request: REST API to delete all items in a cart (or delete the cart itself) e.g.

DELETE /shop/api/cart

Reason: There is currently no way to do this other than running a loop over each cart item and setting its quantity to 0, which is more of a hack and puts load on the server + is not stable enough.