Files
old-holivud2/app/models/concerns/attachable.rb
2020-06-17 14:39:10 +02:00

10 lines
141 B
Ruby

# frozen_string_literal: true
module Attachable
extend ActiveSupport::Concern
included do
has_many_attached :attachments
end
end