Open Carly-Schaaf opened 5 years ago
You're off to a good start, Erica! Be sure to finish this up tomorrow after the assessment. As soon as the Frontend Routes are made and the unchecked boxes are completed, you're good to go! Feel free to ask me any questions along the way
The checklist is finished! Do I check the unchecked items off or do you?
Awesome! I'll check them off as I look it over :)
Looks great, Erica! Just a few things:
username
Wiki Page Home
MVP List
DB Schema
back_ticked
back_ticked
firstname
andusername
are separate data, you should include both in your tableusername
) for faster lookupcreator
should becreator_id
image_url
anywhere on the backend (we'll use active storage)creator_id
PinBoard
joins tableAPI Routes
id
(RESTful convention), so the show route will still be/api/users/:user_id
. On the frontend, it's fine if you want to have your route be/users/:userId
as well./api/users/:user_id/boards
, but it might be easier to just make normal restful routes (/api/boards
) and pass theuser_id
as a param in your request. Either way, you should re-write these to be RESTful:Frontend Routes
Sample State