class ActiveStorage::Attached
Active Storage Attached¶ ↑
Abstract base class for the concrete ActiveStorage::Attached::One
and ActiveStorage::Attached::Many
classes that both provide proxy access to the blob association for a record.
Attributes
Public Class Methods
Source
# File lib/active_storage/attached.rb, line 13 def initialize(name, record) @name, @record = name, record end
Private Instance Methods
Source
# File lib/active_storage/attached.rb, line 18 def change record.attachment_changes[name] end