-
Notifications
You must be signed in to change notification settings - Fork 229
feat(sms): Set up flow to add recovery phone from Settings #18276
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,7 +13,15 @@ export class RecoveryPhone { | |
|
|
||
| @Field({ | ||
| nullable: true, | ||
| description: 'The registered recovery phone number', | ||
| description: | ||
| 'The registered recovery phone number. If the user does not have a verified session, this field will return the last 4 digits of the phone number with a mask on the rest.', | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does it return with mask, or just return the last 4 digits?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Currently it returns with a mask, but I think it makes sense for it to return with only the last 4 digits. I'll file one issue for the Twilio national_format bit + this since they're related. |
||
| }) | ||
| public phoneNumber!: string; | ||
|
|
||
| @Field({ | ||
| nullable: true, | ||
| description: | ||
| 'Returns true if the user is eligible to set up a recovery phone.', | ||
| }) | ||
| public available!: boolean; | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.