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

42 lines
1.2 KiB
Ruby
Raw Normal View History

2020-08-06 16:35:45 +02:00
# == Schema Information
#
# Table name: champs
#
# id :integer not null, primary key
# data :jsonb
# fetch_external_data_exceptions :string is an Array
2022-12-01 12:00:21 +01:00
# prefilled :boolean default(FALSE)
# private :boolean default(FALSE), not null
# rebased_at :datetime
# 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
# row_id :string
# type_de_champ_id :integer
2020-08-06 16:35:45 +02:00
#
2018-02-13 18:18:20 +01:00
class Champs::CiviliteChamp < Champ
2022-12-19 22:00:22 +01:00
validates :value, inclusion: ["M.", "Mme"], allow_nil: true, allow_blank: false
def html_label?
false
end
def female_input_id
"#{input_id}-female"
end
def male_input_id
"#{input_id}-male"
end
def focusable_input_id
female_input_id
end
2018-02-13 18:18:20 +01:00
end