# File lib/brakeman/checks/check_filter_skipping.rb, line 22
  def uses_arbitrary_actions?
    tracker.routes.each do |_name, actions|
      if actions.include? :allow_all_actions
        return true
      end
    end

    false
  end