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.
Namespace
Module
Class
Methods
Attributes
| [R] | name | |
| [R] | record | 
Class Public methods
new(name, record)
📝 Source code
# File activestorage/lib/active_storage/attached.rb, line 11
    def initialize(name, record)
      @name, @record = name, record
    end
              
                🔎 See on GitHub