REST-Rant is an app where users can review restaurants.
Method | Path | Purpose |
---|---|---|
GET | / |
The home page |
GET | /places |
Index page listing all places |
GET | /places/new |
New form for a place |
POST | /places |
Create a new place |
GET | /places/:id |
Show one place in detail (Associated rants, new rant form, delete rant button) |
GET | /places/:id/edit |
Edit form for a place |
PUT | /places/:id |
Make changes to existing place |
DELETE | /places/:id |
Delete a place |
POST | /places/:id/rant |
Add rant to a place |
DELETE | /places/:id/rant/:rantId |
Delete a rant |
GET | '*' | 404 page (matches any route not defined above) |
places
Field | Type |
---|---|
_id | Object ID |
name | String |
city | String |
state | String |
cuisines | String |
pic | String |