Files
old-holivud2/app/models/concerns/second_guardian_photoable.rb
2020-06-24 04:48:12 +02:00

10 lines
203 B
Ruby

module SecondGuardianPhotoable
extend ActiveSupport::Concern
included do
has_one_attached :guardian_2_photo
validates :guardian_2_photo, content_type: ["image/png", "image/jpeg"]
end
end