Hi, I'm a rookie in Rails and I have trouble accessing a controller method from a view.
I created a form in the view
<form id="form-cargaMasiva" action="/redmine/issues/load" method="get">
...
...
...
</form>
my goal is that when I submit using javascript I take the controller method that I called load, my controller is called issues_controller, as I understand to redirect you to the load method you have to put in the file routes.rb
get 'issues/load', :to => 'issues#load'
But there's no way it works, it gives me a 404