up vote 2 down vote favorite
share [g+] share [fb]

Projects have many tasks and a task has a custom RESTful action called 'approve'.

I'm expecting the helper to look something like this approve_project_task_url

This isn't working for me:

map.resources :projects,
              :has_many => :tasks,
                           :member => { :approve => :post }
link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

I once had the same problem but I never searched long and hard for a fix. Instead I just opted for the older style which since then I've always used:

map.resources :projects do |project|
  project.resources :tasks, :member => {:approve => :post}
end

That will give you your required approve_project_task_url(@project, @task) routes/helpers.

I guess you may already know this approach? If so and you don't like it hopefully I'll learn something from your other responses :)

link|improve this answer
3  
You can also use "rake routes" to see what routes have been created. – Lee Irving May 28 '09 at 15:32
1  
That is the fix. :has_many is just a shortcut for when it's not complicated. – Ian Terrell May 28 '09 at 17:05
@Ian: that's good for me to know too, cheers. – tsdbrown May 28 '09 at 20:50
feedback
 **This is syntax correction to above solution**

map.resources :projects do |project|
  project.resources :tasks, :member => {:approve => :post}
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.