method
clear_attribute_changes
v7.1.3.4 -
Show latest stable
- Class:
ActiveModel::Dirty
clear_attribute_changes(attr_names)public
No documentation available.
# File activemodel/lib/active_model/dirty.rb, line 324
def clear_attribute_changes(attr_names)
attr_names.each do |attr_name|
clear_attribute_change(attr_name)
end
end