W3cubDocs

/Ruby on Rails 7.0

module ActiveRecord::Core::ClassMethods

Public Instance Methods

filter_attributes() Show source
# File activerecord/lib/active_record/core.rb, line 373
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.

filter_attributes=(filter_attributes) Show source
# File activerecord/lib/active_record/core.rb, line 382
def filter_attributes=(filter_attributes)
  @inspection_filter = nil
  @filter_attributes = filter_attributes
end

Specifies columns which shouldn't be exposed while calling #inspect.

© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.