7 lines
129 B
Ruby
7 lines
129 B
Ruby
class Champs::YesNoChamp < Champs::CheckboxChamp
|
|
private
|
|
|
|
def value_for_export
|
|
value == 'true' ? 'oui' : 'non'
|
|
end
|
|
end
|