method
skip_strict_loading
v7.1.3.4 -
Show latest stable
- Class:
ActiveRecord::Associations::Association
skip_strict_loading(&block)private
No documentation available.
# File activerecord/lib/active_record/associations/association.rb, line 245
def skip_strict_loading(&block)
skip_strict_loading_was = @skip_strict_loading
@skip_strict_loading = true
yield
ensure
@skip_strict_loading = skip_strict_loading_was
end