Flowdock
method

redirect_to_full_url

Importance_0
v2.3.2 - Show latest stable - 0 notes - Class: ActionController::Base
redirect_to_full_url(url, status) protected

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_controller/base.rb, line 1126
      def redirect_to_full_url(url, status)
        raise DoubleRenderError if performed?
        logger.info("Redirected to #{url}") if logger && logger.info?
        response.redirect(url, interpret_status(status))
        @performed_redirect = true
      end
Register or log in to add new notes.