class
Ruby on Rails latest stable (v7.1.3.2)
-
0 notes
- Superclass:
Object
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.0 (0)
- 6.1.3.1 (1)
- 6.1.7.7 (0)
- 7.0.0 (38)
- 7.1.3.2 (7)
- 7.1.3.4 (0)
- What's this?
Active Support Parameter Filter
ParameterFilter replaces values in a Hash-like object if their keys match one of the specified filters.
Matching based on nested keys is possible by using dot notation, e.g. "credit_card.number".
If a proc is given as a filter, each key and value of the Hash-like and of any nested Hashes will be passed to it. The value or key can then be mutated as desired using methods such as String#replace.
# Replaces values with "[FILTERED]" for keys that match /password/i. ActiveSupport::ParameterFilter.new([:password]) # Replaces values with "[FILTERED]" for keys that match /foo|bar/i. ActiveSupport::ParameterFilter.new([:foo, "bar"]) # Replaces values for the exact key "pin" and for keys that begin with # "pin_". Does not match keys that otherwise include "pin" as a # substring, such as "shipping_id". ActiveSupport::ParameterFilter.new([/\Apin\z/, /\Apin_/]) # Replaces the value for :code in `{ credit_card: { code: "xxxx" } }`. # Does not change `{ file: { code: "xxxx" } }`. ActiveSupport::ParameterFilter.new(["credit_card.code"]) # Reverses values for keys that match /secret/i. ActiveSupport::ParameterFilter.new([-> (k, v) do v.reverse! if /secret/i.match?(k) end])
Constants
FILTERED = "[FILTERED]"