Flowdock
method

apply_remaining_actions

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: ActionController::Verification
apply_remaining_actions(options) 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_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
Register or log in to add new notes.