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

12 lines
386 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-02-13 18:18:20 +01:00
class Champs::PhoneChamp < Champs::TextChamp
2020-07-29 15:45:25 +02:00
validates :value,
phone: {
possible: true,
allow_blank: true,
message: I18n.t(:not_a_phone, scope: 'activerecord.errors.messages')
},
if: -> { !Phonelib.valid_for_countries?(value, TypesDeChamp::PhoneTypeDeChamp::DEFAULT_COUNTRY_CODES) && validate_champ_value_or_prefill? }
2018-02-13 18:18:20 +01:00
end