protected Method

ClassMethods.update_filter_chain(filters, filter_type, pos, &block)

There's no documentation for this item.

Source Code

# File action_controller/filters.rb, line 524
def update_filter_chain(filters, filter_type, pos, &block)
  new_filters = create_filters(filters, filter_type, &block)
  new_chain = filter_chain.insert(pos, new_filters).flatten
  write_inheritable_attribute('filter_chain', new_chain)
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.