Module: ActiveStorage::Reflection::ActiveRecordExtensions::ClassMethods
- Defined in:
- lib/active_storage/reflection.rb
Instance Method Summary collapse
- 
  
    
      #reflect_on_all_attachments  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Returns an array of reflection objects for all the attachments in the class. 
- 
  
    
      #reflect_on_attachment(attachment)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Returns the reflection object for the named attachment.
Instance Method Details
#reflect_on_all_attachments ⇒ Object
Returns an array of reflection objects for all the attachments in the class.
| 49 50 51 | # File 'lib/active_storage/reflection.rb', line 49 def .values end | 
#reflect_on_attachment(attachment) ⇒ Object
Returns the reflection object for the named attachment.
User.(:avatar)
# => the avatar reflection
| 58 59 60 | # File 'lib/active_storage/reflection.rb', line 58 def () [.to_s] end |