13 lines
204 B
Ruby
13 lines
204 B
Ruby
class Champs::YesNoChamp < Champs::CheckboxChamp
|
|
def search_terms
|
|
if value == 'true'
|
|
[ libelle ]
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def value_for_export
|
|
value == 'true' ? 'oui' : 'non'
|
|
end
|
|
end
|