Search Results

3
votes

Redirecting to a 500 page when an AJAX call fails in Ruby on Rails

You can use respond_to inside a controller's rescue_action or rescue_action_in_public method. Consider the following controller: class DefaultController < ApplicationController …