Returns true if the filter is excluded from the given action
Source Code
# File action_controller/filters.rb, line 383 def filter_excluded_from_action?(filter,action) #:nodoc: case when ia = included_actions[filter] !ia.include?(action) when ea = excluded_actions[filter] ea.include?(action) end end
<code/>and<pre/>for code samples.