Displaying 1 result from an estimated 1 matches for "content_campaign".
Did you mean:
contentcampaign
2007 Sep 21
1
generating nested resource path
I have a nested resourced called attachments:
(routes.rb)
map.resources :content_campaigns do |content_campaigns|
content_campaigns.resources :attachments, :member => { :download
=> :get}
end
But, I can''t seem to generate the new path after I create a new
attachment:
(attachments_controller.rb)
format.xml { head :created, :location =>
attachment_url(@attach...