i have following resources`:
resources :badges collections match 'create', via [:get, :post] end end when access these pages [mydomain]/badges/new.
how remove badges fromt domain , maintain clean resources routing method? (without having manually change of these resources' paths
you can this:
resources :badges, path: '/' #... end
Comments
Post a Comment