方法
类公共方法
new(app) 链接
源代码: 显示 | 在 GitHub 上查看
# File activerecord/lib/active_record/encryption/auto_filtered_parameters.rb, line 6 def initialize(app) @app = app @attributes_by_class = Concurrent::Map.new @collecting = true install_collecting_hook end
实例公共方法
enable() 链接
源代码: 显示 | 在 GitHub 上查看
# File activerecord/lib/active_record/encryption/auto_filtered_parameters.rb, line 14 def enable apply_collected_attributes @collecting = false end