-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
What
Create endpoints for Exercise data.
Why
So that it is possible to create, delete, edit, and get exercises by different criteria.
How
Implement endpoints for
- Exercises:
- Get all exercises:
GET /exercises - Get exercise with specific
id:GET /exercises/id - Create a new exercise:
POST /exercises - Delete an exercise:
DELETE /exercises/id - Update a specific exercise:
PUT /exercises/id
- Units:
- Get all units:
GET /units - Get unit with specific
id:GET /units/id - Create a new unit:
POST /units - Delete a unit:
DELETE /units/id - Update a specific unit:
PUT /units/id
- Modules:
- Get all modules:
GET /modules - Get module with specific
id:GET /modules/id - Create a new module:
POST /modules - Delete a module:
DELETE /modules/id - Update a specific module:
PUT /module/id
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Under Design