2024-04-29 00:17:15 +02:00
|
|
|
# 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')
|
2024-04-01 07:16:32 +02:00
|
|
|
},
|
2024-04-23 10:02:42 +02:00
|
|
|
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
|