Htm::Application.routes.draw do
.......................other routes......
resources :contacts do
post :import_remote, :on => :collection
get :import_remote, :on => :collection
collection do
post :mapper
get :import
post :destroy_multiple
delete :destroy_all
end
end
end
I followed the same steps you given in issue 1, but I am getting this error. Please help.
I upgraded my Rails version from 3.2.13 to Rails 4.2.6. In the older version, they used map_fields plugin where in my contacts controller:
when I run the code I am getting the error
This is my routes.rb file:
I followed the same steps you given in issue 1, but I am getting this error. Please help.