private Method

Verification.verify_presence_of_keys_in_hash_flash_or_params(options)

There's no documentation for this item.

Source Code

# File action_controller/verification.rb, line 104
def verify_presence_of_keys_in_hash_flash_or_params(options) # :nodoc:
  [*options[:params] ].find { |v| params[v].nil?  } ||
  [*options[:session]].find { |v| session[v].nil? } ||
  [*options[:flash]  ].find { |v| flash[v].nil?   }
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.