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

8 lines
144 B
Ruby
Raw Normal View History

2018-10-31 19:48:03 +01:00
class Champs::DecimalNumberChamp < Champ
validates :value, numericality: { allow_nil: true }
def value_for_export
value.to_f
end
end