10 lines
193 B
Ruby
10 lines
193 B
Ruby
module GuardianPhotoable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
has_one_attached :guardian_photo
|
|
|
|
validates :guardian_photo, content_type: ["image/png", "image/jpeg"]
|
|
end
|
|
end
|