1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Make changes_applied public again

This was (accidentally?) made private, whereas previously it was public.
This commit is contained in:
Chris Salzberg 2021-04-25 22:45:26 +09:00
parent ac3910791d
commit 883292fdca
No known key found for this signature in database
GPG key ID: C0C7B09832CB1CB1

View file

@ -282,6 +282,11 @@ module ActiveRecord
new_record? || has_changes_to_save? || marked_for_destruction? || nested_records_changed_for_autosave?
end
def changes_applied # :nodoc:
@_already_called[:changes_applied] = true
super
end
private
# Track if this record is currently being saved.
# Autosave can call save multiple times on the same record. Some methods
@ -530,11 +535,6 @@ module ActiveRecord
errors.uniq!
end
def changes_applied
@_already_called[:changes_applied] = true
super
end
# Call +changes_applied+ at least once or if attributes changed
def _apply_changes?(attribute_names)
!@_already_called[:changes_applied] || attribute_names.present?