method

apply_remaining_actions

rails latest stable - Class: ActionController::Verification

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

apply_remaining_actions(options)
private

No documentation available.

# File actionpack/lib/action_controller/verification.rb, line 122
    def apply_remaining_actions(options) # :nodoc:
      case
        when options[:render]      ; render(options[:render])
        when options[:redirect_to] ; redirect_to(apply_redirect_to(options[:redirect_to]))
        else head(:bad_request)
      end
    end