Module: Twilio::Rails::HasPhoneNumber
- Extended by:
- ActiveSupport::Concern
- Defined in:
- lib/twilio/rails/concerns/has_phone_number.rb
Overview
Provides validations and reformatting on validation for a model that has an attribute phone_number
that is
that is unique and that matches PhoneNumberFormatter.coerce.
Instance Method Summary collapse
- #reformat_phone_number ⇒ Object
- #valid_north_american_phone_number? ⇒ Boolean
- #valid_phone_number? ⇒ Boolean
Instance Method Details
#reformat_phone_number ⇒ Object
16 17 18 19 20 21 |
# File 'lib/twilio/rails/concerns/has_phone_number.rb', line 16 def reformat_phone_number current = Twilio::Rails::PhoneNumberFormatter.coerce(phone_number) self.phone_number = current if current true end |
#valid_north_american_phone_number? ⇒ Boolean
23 24 25 26 27 28 29 |
# File 'lib/twilio/rails/concerns/has_phone_number.rb', line 23 def valid_north_american_phone_number? Twilio::Rails.deprecator.warn(<<~DEPRECATION.strip) valid_north_american_phone_number? is deprecated and will be removed in the next major version. Use valid_phone_number? instead. The configured phone_number_formatter can manage the region of the phone number. DEPRECATION Twilio::Rails::PhoneNumberFormatter.valid?(phone_number) end |
#valid_phone_number? ⇒ Boolean
31 32 33 |
# File 'lib/twilio/rails/concerns/has_phone_number.rb', line 31 def valid_phone_number? Twilio::Rails::PhoneNumberFormatter.valid?(phone_number) end |