As a customer, I want to create 'storage bins' to organise my pile #3
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Story
As a customer, I want to create named storage bins (a shelf, a box, a room) so I know which physical location holds which items.
Acceptance criteria
POST /binscreates a new bin owned by the logged-in userGET /binsreturns my own bins (admin sees all)PATCH /bins/{id}lets me rename or redescribe a bin I ownDELETE /bins/{id}removes the bin; items inside become un-binned (not deleted)storage_bin_idon create or updateNotes
Ported from v1 issue #1. Backend stub is already in place (
app/routers/items.py).