Module: ActiveStorage::Attached::Model

Extended by:
ActiveSupport::Concern
Defined in:
activestorage/lib/active_storage/attached/model.rb

Overview

Active Storage Attached Model

Provides the class-level DSL for declaring an Active Record model’s attachments.

Instance Method Summary collapse

Methods included from ActiveSupport::Concern

append_features, class_methods, extended, included, prepend_features, prepended

Instance Method Details

#attachment_changesObject

:nodoc:



245
246
247
# File 'activestorage/lib/active_storage/attached/model.rb', line 245

def attachment_changes # :nodoc:
  @attachment_changes ||= {}
end

#changed_for_autosave?Boolean

:nodoc:

Returns:

  • (Boolean)


249
250
251
# File 'activestorage/lib/active_storage/attached/model.rb', line 249

def changed_for_autosave? # :nodoc:
  super || attachment_changes.any?
end

#initialize_dupObject

:nodoc:



253
254
255
256
257
# File 'activestorage/lib/active_storage/attached/model.rb', line 253

def initialize_dup(*) # :nodoc:
  super
  @active_storage_attached = nil
  @attachment_changes = nil
end

#reloadObject

:nodoc:



259
260
261
# File 'activestorage/lib/active_storage/attached/model.rb', line 259

def reload(*) # :nodoc:
  super.tap { @attachment_changes = nil }
end