I know it's not advised to go more then 1 level deep in nested routes but here's what I have:
resources :partners do
resources :recommend_partners do
resources :rec_partner_comments
end
end
Is there a way that I can call an alias to use the name_route
So instead of using
new_partner_recommend_partner_rec_partner_comments
I'll use something like
new_comment_on_pr
Just a thought...