2022-Spring-NYU-DevOps-Shopcarts / shopcarts

Shopcarts squad.
Apache License 2.0
2 stars 2 forks source link

Update Shopcarts #7

Closed lemadmax closed 2 years ago

lemadmax commented 2 years ago

As a user
I need to be able to update my shopcart
So that I can store exactly the things I want in my shopcart

Details and Assumptions

yjjw commented 2 years ago

Could we break Create/Read/Update/Delete to four different stories so each story just focuses on one part?

TimothyXu commented 2 years ago

Could we break Create/Read/Update/Delete to four different stories so each story just focuses on one part?

Agreed, this story is only for update. Need other 3 too.

TimothyXu commented 2 years ago

Changed details and acceptance since according to REST conventions (given in lecture), PUT must be idempotent (calling same PUT request multiple times should be the same as calling it once). Hence instead of an operation parameter (add/delete), we use a quantity parameter for the amount we want to update to.