Sha256: 45c9faedc4684c1352433754d7d8e3108489b036a57d189749537ca1990fadf1
Contents?: true
Size: 383 Bytes
Versions: 21
Compression:
Stored size: 383 Bytes
Contents
module Brightcontent module Attachments module Attachable extend ActiveSupport::Concern included do add_brightcontent_column :attachments has_many :attachments, as: :attachable, dependent: :destroy, class_name: Brightcontent::Attachment, inverse_of: :attachable end def attachment attachments.first end end end end
Version data entries
21 entries across 21 versions & 1 rubygems