LG-8387 Prevent Threatmetrix pending users from doing IdV sign ins#7493
Merged
LG-8387 Prevent Threatmetrix pending users from doing IdV sign ins#7493
Conversation
Threatmetrix device profiling is designed to flag suspicious accounts. These accounts are not intended to have access to any IdV functionality after being flagged. This commit adds that functionality. Threatmetrix accounts can be relieved by changing the `deactivation_reason` in the profile. A follow-up PR will add tooling for this. [skip changelog]
jskinne3
approved these changes
Dec 15, 2022
| end | ||
|
|
||
| def threatmetrix_review_pending_profile | ||
| user.profiles.threatmetrix_review_pending.order(created_at: :desc).first |
Contributor
There was a problem hiding this comment.
What's the point of ordering these?
Contributor
Author
There was a problem hiding this comment.
Just to get the most recent one. There should only be one but want to make sure we are consistent if somehow there are multiple.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Threatmetrix device profiling is designed to flag suspicious accounts. These accounts are not intended to have access to any IdV functionality after being flagged. This commit adds that functionality.
Threatmetrix accounts can be relieved by changing the
deactivation_reasonin the profile. A follow-up PR will add tooling for this.