aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/http/parameter_filter.rb
blob: ddeb3d81e205bbb9f7f246e19c810aaca2e4014b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require "active_support/deprecation/constant_accessor"
require "active_support/parameter_filter"

module ActionDispatch
  module Http
    include ActiveSupport::Deprecation::DeprecatedConstantAccessor
    deprecate_constant "ParameterFilter", "ActiveSupport::ParameterFilter",
      message: "ActionDispatch::Http::ParameterFilter is deprecated and will be removed from Rails 6.1. Use ActiveSupport::ParameterFilter instead."
  end
end