-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SELC-6118] fix: set mobile phone number regex with a minimum of 7 di…
…gits (#501)
- Loading branch information
1 parent
2427db9
commit f558b5d
Showing
4 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3138,7 +3138,7 @@ | |
}, | ||
"role" : { | ||
"type" : "string", | ||
"description" : "User's role, available value: [MANAGER, DELEGATE, SUBDELEGATE, OPERATOR, ADMIN_EA]" | ||
"description" : "User's role, available values: [MANAGER, DELEGATE, SUBDELEGATE, OPERATOR, ADMIN_EA]" | ||
}, | ||
"surname" : { | ||
"type" : "string", | ||
|
@@ -3684,7 +3684,7 @@ | |
}, | ||
"role" : { | ||
"type" : "string", | ||
"description" : "User's role, available value: [MANAGER, DELEGATE, SUBDELEGATE, OPERATOR, ADMIN_EA]", | ||
"description" : "User's role, available values: [MANAGER, DELEGATE, SUBDELEGATE, OPERATOR, ADMIN_EA]", | ||
"enum" : [ "ADMIN", "ADMIN_EA", "LIMITED" ] | ||
}, | ||
"status" : { | ||
|
@@ -3942,7 +3942,7 @@ | |
}, | ||
"selcRole" : { | ||
"type" : "string", | ||
"description" : "User's Selfcare role, available value: [ADMIN, ADMIN_EA, LIMITED]", | ||
"description" : "User's Selfcare role, available values: [ADMIN, ADMIN_EA, LIMITED]", | ||
"enum" : [ "ADMIN", "ADMIN_EA", "LIMITED" ] | ||
}, | ||
"status" : { | ||
|
@@ -4035,7 +4035,7 @@ | |
}, | ||
"role" : { | ||
"type" : "string", | ||
"description" : "User's Selfcare role, available value: [ADMIN, ADMIN_EA, LIMITED]", | ||
"description" : "User's Selfcare role, available values: [ADMIN, ADMIN_EA, LIMITED]", | ||
"enum" : [ "ADMIN", "ADMIN_EA", "LIMITED" ] | ||
}, | ||
"status" : { | ||
|
@@ -4283,7 +4283,7 @@ | |
"example" : "[email protected]" | ||
}, | ||
"mobilePhone" : { | ||
"pattern" : "^\\+?[0-9]{9,15}$", | ||
"pattern" : "^\\+?[0-9]{7,15}$", | ||
"type" : "string", | ||
"description" : "User's institutional phone number" | ||
}, | ||
|
@@ -4468,7 +4468,7 @@ | |
}, | ||
"role" : { | ||
"type" : "string", | ||
"description" : "User's role, available value: [MANAGER, DELEGATE, SUBDELEGATE, OPERATOR, ADMIN_EA]" | ||
"description" : "User's role, available values: [MANAGER, DELEGATE, SUBDELEGATE, OPERATOR, ADMIN_EA]" | ||
} | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters