-
Notifications
You must be signed in to change notification settings - Fork 166
LG-13003: Make sure we are checking all relevant Threatmetrix flags where necessary #10391
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
908bcdd
5608b82
d9751a1
2e03c06
29c5b62
7e11f90
bc9d350
608f670
9b85139
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 |
|---|---|---|
|
|
@@ -111,6 +111,7 @@ def activate(reason_deactivated: nil) | |
|
|
||
| def tmx_status | ||
| return nil unless IdentityConfig.store.in_person_proofing_enforce_tmx | ||
| return nil unless FeatureManagement.proofing_device_profiling_decisioning_enabled? | ||
|
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. This has an impact on analytics, hence the change to the analytics spec. |
||
|
|
||
| fraud_pending_reason || :threatmetrix_pass | ||
| end | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,7 +48,8 @@ def save_profile( | |
|
|
||
| def set_idv_level(in_person_verification_needed:, selfie_check_performed:) | ||
| if in_person_verification_needed | ||
| if IdentityConfig.store.in_person_proofing_enforce_tmx | ||
| if IdentityConfig.store.in_person_proofing_enforce_tmx && | ||
| FeatureManagement.proofing_device_profiling_decisioning_enabled? | ||
|
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.
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. You might consider moving this into a new method in
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. @matthinz I think we have a bunch of these flags that could probably be moved in to that class. I think I'll open our own ticket for consolidating our features. Thanks!
gina-yamada marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| :in_person | ||
| else | ||
| :legacy_in_person | ||
|
|
||
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.
Undoing previous change around fraud rejection. See this slack thread for justification
Checking for fraud_review_pending and fraud_rejection because this is called before both fraud redirection cases.
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.
Jack-
can you explain again why the additional check ((fraud_review_pending? || fraud_rejection?)) is needed? I am thinking about the method that is calling this method and I am not sure about this.🤔Update: After getting on a call with Jack and others on Joy- we talked through this logic - ipp_enrollment_status_not_passed (When a user fails IPP- we let them try again. I mixed up the logic so this is okay. Here is the table that says okay https://docs.google.com/document/d/1Xvhz5xXQgQK7oYDlHYBkG-8-v6mY9yS9g_s-70Kzr1g/edit)
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.
I will add a comment above this method to help clarify what's going on here.
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.
@gina-yamada @n1zyy @KeithNava Comment added here