Flowdock
method

inspection_filter

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: ClassMethods
inspection_filter() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/core.rb, line 387
      def inspection_filter # :nodoc:
        if defined?(@filter_attributes)
          @inspection_filter ||= begin
            mask = InspectionMask.new(ActiveSupport::ParameterFilter::FILTERED)
            ActiveSupport::ParameterFilter.new(@filter_attributes, mask: mask)
          end
        else
          superclass.inspection_filter
        end
      end
Register or log in to add new notes.