module ActiveRecord::Core::ClassMethods
Attributes
filter_attributes[W]
Specifies columns which shouldn't be exposed while calling #inspect.
Public Instance Methods
# File activerecord/lib/active_record/core.rb, line 384
def filter_attributes
if defined?(@filter_attributes)
@filter_attributes
else
superclass.filter_attributes
end
end Returns columns which shouldn't be exposed while calling #inspect.
© 2004–2020 David Heinemeier Hansson
Licensed under the MIT License.