method
populate_with_current_scope_attributes
v6.1.7.7 -
Show latest stable
- Class:
ActiveRecord::Scoping
populate_with_current_scope_attributes()public
No documentation available.
# File activerecord/lib/active_record/scoping.rb, line 35
def populate_with_current_scope_attributes # :nodoc:
return unless self.class.scope_attributes?
attributes = self.class.scope_attributes
_assign_attributes(attributes) if attributes.any?
end