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
Boards are meant to be collaborative. Currently there are no endpoints to manage contributors (members) on a board, assign roles, or control permissions.
Solution
Implement endpoints for managing board contributors and their roles.
Acceptance Criteria
POST /api/boards/[id]/members - Add contributor to board
Problem
Boards are meant to be collaborative. Currently there are no endpoints to manage contributors (members) on a board, assign roles, or control permissions.
Solution
Implement endpoints for managing board contributors and their roles.
Acceptance Criteria
POST /api/boards/[id]/members- Add contributor to boardDELETE /api/boards/[id]/members/[userId]- Remove contributorPATCH /api/boards/[id]/members/[userId]- Change contributor roleGET /api/boards/[id]/members- List board membersRole Model
Dependencies
Notes