method
clear_attribute_changes
v5.0.0.1 -
Show latest stable
- Class:
ActiveRecord::AttributeMethods::Dirty
clear_attribute_changes(attr_names)public
No documentation available.
# File activerecord/lib/active_record/attribute_methods/dirty.rb, line 70
def clear_attribute_changes(attr_names)
super
attr_names.each do |attr_name|
clear_attribute_change(attr_name)
end
end