Change param name to nested resource parent
- by Stefano Verna
I have this routes:
resources :tags do
resources :comments
end
so the :create action for the comments has the following form
tag_comments POST /tags/:tag_id/comments(.:format)
how can i change the paramenter name from :tag_id to :commentable_id?