Skip to content

Commit f7329ea

Browse files
committed
Make FilterParameters#ENV_MATCH, NULL_ENV_FILTER, NULL_PARAM_FILTER nodoc
https://edgeapi.rubyonrails.org/classes/ActionDispatch/Http/FilterParameters.html#constant-ENV_MATCH
1 parent 7abac5d commit f7329ea

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

actionpack/lib/action_dispatch/http/filter_parameters.rb

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ module Http
1717
# For more information about filter behavior, see
1818
# ActiveSupport::ParameterFilter.
1919
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:
20+
# :stopdoc:
21+
ENV_MATCH = [/RAW_POST_DATA/, "rack.request.form_vars"]
22+
NULL_PARAM_FILTER = ActiveSupport::ParameterFilter.new
23+
NULL_ENV_FILTER = ActiveSupport::ParameterFilter.new ENV_MATCH
24+
# :startdoc:
2325

2426
def initialize
2527
super

0 commit comments

Comments
 (0)