Tagged Questions
1
vote
2answers
195 views
Should Rails redirect_to be sending html?
In most frameworks, sending a redirect means setting the HTTP headers and exiting without sending any HTML data back to the browser. However, using Firebug I see that Rails is not following this ...
0
votes
1answer
167 views
What is causing this redirect_to to fail?
I am trying to use this redirect_to
redirect_to :controller => :note_categories, :action => :destroy, :note_id => params[:id]
This is the URL that results
...