Here\'s a beginner rails question...
After I do:
format.xml { head: ok}
How do I return from the controller endpoint without showing th
Use
render :nothing => true, :status => :ok
in your action method