We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7abac5d commit f7329eaCopy full SHA for f7329ea
actionpack/lib/action_dispatch/http/filter_parameters.rb
@@ -17,9 +17,11 @@ module Http
17
# For more information about filter behavior, see
18
# ActiveSupport::ParameterFilter.
19
module FilterParameters
20
- ENV_MATCH = [/RAW_POST_DATA/, "rack.request.form_vars"] # :nodoc:
21
- NULL_PARAM_FILTER = ActiveSupport::ParameterFilter.new # :nodoc:
22
- NULL_ENV_FILTER = ActiveSupport::ParameterFilter.new ENV_MATCH # :nodoc:
+ # :stopdoc:
+ ENV_MATCH = [/RAW_POST_DATA/, "rack.request.form_vars"]
+ NULL_PARAM_FILTER = ActiveSupport::ParameterFilter.new
23
+ NULL_ENV_FILTER = ActiveSupport::ParameterFilter.new ENV_MATCH
24
+ # :startdoc:
25
26
def initialize
27
super
0 commit comments