feat(web): saved searches with user favorites #91
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?
Ref: docs/ROADMAP.md § Search & Discovery
Allow users to save frequently-used search filter combinations and quickly re-apply them.
Requirements
Database
saved_searchestable:id,user_id,name,filters(JSONB),is_default(bool),created_at,updated_atAPI Endpoints
GET /api/saved-searches— list current user's saved searchesPOST /api/saved-searches— create a saved searchPUT /api/saved-searches/{id}— update name/filtersDELETE /api/saved-searches/{id}— delete a saved searchWeb UI
Dependencies