method
strict_loading_violation!
v6.1.7.7 -
Show latest stable
- Class:
ActiveRecord::Core
strict_loading_violation!(owner:, reflection:)public
No documentation available.
# File activerecord/lib/active_record/core.rb, line 307
def self.strict_loading_violation!(owner,, reflection)) # :nodoc:
case action_on_strict_loading_violation
when :raise
message = "`#{owner}` is marked for strict_loading. The `#{reflection.klass}` association named `:#{reflection.name}` cannot be lazily loaded."
raise ActiveRecord::StrictLoadingViolationError.new(message)
when :log
name = "strict_loading_violation.active_record"
ActiveSupport::Notifications.instrument(name, owner: owner, reflection: reflection)
end
end