9e42190148
Overload for_export instead
7 lines
200 B
Ruby
7 lines
200 B
Ruby
class Champs::IntegerNumberChamp < Champ
|
|
validates :value, numericality: { only_integer: true, allow_nil: true, allow_blank: true }
|
|
|
|
def for_export
|
|
value.present? ? value.to_i : nil
|
|
end
|
|
end
|