-
Notifications
You must be signed in to change notification settings - Fork 166
Always confirm phone number with OTP during unsupervised identity verification #6545
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 | ||
|---|---|---|---|---|
|
|
@@ -106,7 +106,7 @@ def update_idv_session | |||
| idv_session.address_verification_mechanism = :phone | ||||
| idv_session.applicant = applicant | ||||
| idv_session.vendor_phone_confirmation = true | ||||
| idv_session.user_phone_confirmation = phone_matches_user_phone? | ||||
| idv_session.user_phone_confirmation = false | ||||
|
||||
| if phone_confirmation_required? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Potentially? I'm not sure though, the current flow is:
- PhoneFinder
- Confirm Phone via OTP if needed
so the stuff we can delete in the app might be more limited. The tests are a different story though.
mitchellhenke marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the crux and only thing needed in this PR to change the behavior, everything else is to support changing the specs