-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Bonus
As a bonus, you may implement routes to allow bosses to add and remove work from their minions' backlogs.
Schema:
-
Work:
- id: string
- title: string
- description: string
- hours: number
- minionId: string
-
Routes required:
- GET /api/minions/:minionId/work to get an array of all work for the specified minon.
- POST /api/minions/:minionId/work to create a new work object and save it to the database.
- PUT /api/minions/:minionId/work/:workId to update a single work by id.
- DELETE /api/minions/:minionId/work/:workId to delete a single work by id.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request