method
prepend_filter_to_chain
v2.0.3 -
Show latest stable
- Class:
ActionController::Filters::ClassMethods
prepend_filter_to_chain(filters, filter_type = :around, &block)protected
No documentation available.
# File actionpack/lib/action_controller/filters.rb, line 519
def prepend_filter_to_chain(filters, filter_type = :around, &block)
pos = find_filter_prepend_position(filters, filter_type)
update_filter_chain(filters, filter_type, pos, &block)
end