Files
old-holivud2/app/models/concerns/attachable.rb

10 lines
141 B
Ruby
Raw Normal View History

2020-06-17 14:39:10 +02:00
# frozen_string_literal: true
module Attachable
extend ActiveSupport::Concern
included do
has_many_attached :attachments
end
end