Sync of the branch

This commit is contained in:
Senad Uka
2020-06-01 18:59:15 +02:00
parent 858fafc3c5
commit 3690268f83
11 changed files with 199 additions and 52 deletions

View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
module Attachable
extend ActiveSupport::Concern
included do
has_many_attached :attachments
end
end

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
class MatchingRequest < ApplicationRecord
include Attachable
belongs_to :project
end