demarches-normaliennes/app/models/champs/titre_identite_champ.rb

47 lines
1.4 KiB
Ruby
Raw Normal View History

2020-09-17 17:09:16 +02:00
# == Schema Information
#
# Table name: champs
#
# id :integer not null, primary key
# data :jsonb
# fetch_external_data_exceptions :string is an Array
# private :boolean default(FALSE), not null
# rebased_at :datetime
# row :integer
# type :string
# value :string
2021-10-05 15:37:13 +02:00
# value_json :jsonb
# created_at :datetime
# updated_at :datetime
# dossier_id :integer
# etablissement_id :integer
# external_id :string
# parent_id :bigint
# type_de_champ_id :integer
2020-09-17 17:09:16 +02:00
#
class Champs::TitreIdentiteChamp < Champ
FILE_MAX_SIZE = 20.megabytes
ACCEPTED_FORMATS = ['image/png', 'image/jpeg']
validates :piece_justificative_file, content_type: ACCEPTED_FORMATS, size: { less_than: FILE_MAX_SIZE }
2020-09-17 17:09:16 +02:00
def main_value_name
:piece_justificative_file
end
def search_terms
# We dont know how to search inside documents yet
end
def mandatory_blank?
mandatory? && !piece_justificative_file.attached?
2020-09-17 17:09:16 +02:00
end
def for_export
piece_justificative_file.attached? ? "présent" : "absent"
2020-09-17 17:09:16 +02:00
end
def for_api
nil
2020-09-17 17:09:16 +02:00
end
end