You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the platform has no API endpoints for creating, reading, updating, or deleting Boards. These are foundational CRUD operations needed for the pivot to curated collections.
Problem
Currently the platform has no API endpoints for creating, reading, updating, or deleting Boards. These are foundational CRUD operations needed for the pivot to curated collections.
Solution
Implement RESTful Board management endpoints.
Acceptance Criteria
POST /api/boards- Create new boardGET /api/boards- List user's boardsGET /api/boards/[id]- Get single boardPATCH /api/boards/[id]- Update boardDELETE /api/boards/[id]- Delete boardDependencies
Notes