private Method

Verification.apply_remaining_actions(options)

There's no documentation for this item.

Source Code

# File 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
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.