As a customer, I want to create 'storage bins' to organise my pile #3

Open
opened 2026-06-16 08:42:31 +00:00 by martin · 0 comments
Owner

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 /bins creates a new bin owned by the logged-in user
  • GET /bins returns my own bins (admin sees all)
  • PATCH /bins/{id} lets me rename or redescribe a bin I own
  • DELETE /bins/{id} removes the bin; items inside become un-binned (not deleted)
  • Items can be assigned to a bin via storage_bin_id on create or update

Notes

Ported from v1 issue #1. Backend stub is already in place (app/routers/items.py).

## 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 /bins` creates a new bin owned by the logged-in user - [ ] `GET /bins` returns my own bins (admin sees all) - [ ] `PATCH /bins/{id}` lets me rename or redescribe a bin I own - [ ] `DELETE /bins/{id}` removes the bin; items inside become un-binned (not deleted) - [ ] Items can be assigned to a bin via `storage_bin_id` on create or update ## Notes Ported from v1 issue #1. Backend stub is already in place (`app/routers/items.py`).
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: martin/flipventory_v2#3