Hey Guys,
Just a quick question. Let’s say that i have a todo list app. One
todolist can have many todo_items.
I had read that in the RESTful routing, you want to have a max of 7 or
so actions in a controller before you have to start defining more
actions in the routes. So lets say I wanted to create a new todo_item
for my todolist. Would I post the form to the todo_items controller or
should I post the form to the Todolist controller with a new action
called add_item or something like that?
Mainly, I just want to know what the “Right” way to do this is…
Any help you can give me, I would greatly appreciate
Thanks!