I am looking to see if anyone has taken the scaffold code and made is
work with a nested resource. I am having a brain block on what what
url’s I should be using and what objects should be passed around. Here
is my model code.
class Project < ActiveRecord::Base
has_many :tasks
end
class Task < ActiveRecord::Base
has_one :project
end
Thanks
Chris