Method: ActiveRecord::Core::ClassMethods#filter_attributes
- Defined in:
- lib/active_record/core.rb
#filter_attributes ⇒ Object
Returns columns which shouldn’t be exposed while calling #inspect.
402 403 404 405 406 407 408 |
# File 'lib/active_record/core.rb', line 402 def filter_attributes if defined?(@filter_attributes) @filter_attributes else superclass.filter_attributes end end |