Flowdock
method

skip_filter_in_chain

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: ActionController::Filters::FilterChain
skip_filter_in_chain(*filters, &test) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/filters.rb, line 266
      def skip_filter_in_chain(*filters, &test)
        filters, conditions = extract_options(filters)
        filters.each do |filter|
          if callback = find(filter) then delete(callback) end
        end if conditions.empty?
        update_filter_in_chain(filters, :skip => conditions, &test)
      end
Register or log in to add new notes.