Here are the Rails routes:
URL | VERB | ACTION | NAMED ROUTE |
/actors | GET | index | actors_url |
/actors | POST | create | actors_url |
/actors/1 | GET | show | actor_url(@actor) |
/actors/1 | PUT | update | actor_url(@actor) |
/actors/1 | DELETE | destroy | actor_url(@actor) |
/actors/new | GET | new | new_actor_url |
/actors/1/edit | GET | edit | edit_actor_url(@actor) |