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

22 lines
416 B
Ruby
Raw Normal View History

class Champs::CheckboxChamp < Champs::BooleanChamp
def for_export
2019-01-29 14:37:57 +01:00
true? ? 'on' : 'off'
end
2022-09-27 21:56:51 +02:00
def mandatory_blank?
2022-09-27 21:56:51 +02:00
mandatory? && (blank? || !true?)
end
# TODO remove when normalize_checkbox_values is over
def true?
value_with_legacy == TRUE_VALUE
end
private
# TODO remove when normalize_checkbox_values is over
def value_with_legacy
value == 'on' ? TRUE_VALUE : value
end
2018-02-13 18:18:20 +01:00
end