Flowdock
method

location_filter_match?

Importance_0
location_filter_match?(filters) private

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_dispatch/http/filter_redirect.rb, line 26
      def location_filter_match?(filters)
        filters.any? do |filter|
          if String === filter
            location.include?(filter)
          elsif Regexp === filter
            location.match(filter)
          end
        end
      end
Register or log in to add new notes.