= private = protected
append_filter_to_chain(filters, filter_type = :around, &block)
This method has no description. You can help the Ruby on Rails community by adding new notes.
# File actionpack/lib/action_controller/filters.rb, line 514 def append_filter_to_chain(filters, filter_type = :around, &block) pos = find_filter_append_position(filters, filter_type) update_filter_chain(filters, filter_type, pos, &block) end
ActionController::Filters::FilterChain#append_filter_to_chain