method

prepend_filter_to_chain

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