Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change the international telephone validator to allow hyphens in it #5407

Merged
merged 1 commit into from
May 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions datahub/core/validators/telephone.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ class InternationalTelephoneValidator(RegexValidator):
Validator for international telephone numbers.

Validates that phone number is composed of characters found in telephone numbers -
0-9, a space or open / close brackets - optionally preceded with a plus sign.
0-9, a space, hyphens, or open / close brackets - optionally preceded with a plus sign.
"""

regex = r'^\+?[\d() ]{1,}$'
regex = r'^\+?[\d() -]{1,}$'
message = 'Phone number must be composed of numeric characters.'


Expand Down