Flowdock
method

redirect_to

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ActionableExceptions
redirect_to(location) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/middleware/actionable_exceptions.rb, line 29
      def redirect_to(location)
        body = "<html><body>You are being <a href=\"#{ERB::Util.unwrapped_html_escape(location)}\">redirected</a>.</body></html>"

        [302, {
          "Content-Type" => "text/html; charset=#{Response.default_charset}",
          "Content-Length" => body.bytesize.to_s,
          "Location" => location,
        }, [body]]
      end
Register or log in to add new notes.