Module: ActiveStorage::Attached::Model
- Extended by:
- ActiveSupport::Concern
- Defined in:
- 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
-
#attachment_changes ⇒ Object
:nodoc:.
-
#changed_for_autosave? ⇒ Boolean
:nodoc:.
-
#initialize_dup ⇒ Object
:nodoc:.
-
#reload ⇒ Object
:nodoc:.
Instance Method Details
#attachment_changes ⇒ Object
:nodoc:
262 263 264 |
# File 'lib/active_storage/attached/model.rb', line 262 def # :nodoc: @attachment_changes ||= {} end |
#changed_for_autosave? ⇒ Boolean
:nodoc:
266 267 268 |
# File 'lib/active_storage/attached/model.rb', line 266 def changed_for_autosave? # :nodoc: super || .any? end |
#initialize_dup ⇒ Object
:nodoc:
270 271 272 273 274 |
# File 'lib/active_storage/attached/model.rb', line 270 def initialize_dup(*) # :nodoc: super @active_storage_attached = nil @attachment_changes = nil end |
#reload ⇒ Object
:nodoc:
276 277 278 |
# File 'lib/active_storage/attached/model.rb', line 276 def reload(*) # :nodoc: super.tap { @attachment_changes = nil } end |