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
As per Dustin's request, the starter will have a very basic CRUD setup with a pre-seeded and set up database table, that will have a few entries in it with pre-population.
The goal of this task is to create REST endpoints, following best practices:
GET /api/technology - returns all the database entries
GET /api/technology/:id - returns the specific entry from the database
POST /api/technology - creates a new entry and returns the newly created entry's id
PUT /api/technology/:id - updates the entry by id
DELETE /api/technology/:id - deletes the entry by id
Notes
The text was updated successfully, but these errors were encountered: