-
Notifications
You must be signed in to change notification settings - Fork 662
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
Add fraud detection in FC module #9372
Conversation
8c953d9
to
07968b0
Compare
2bd9582
to
348433f
Compare
07968b0
to
f5ca7d5
Compare
348433f
to
a942e43
Compare
0c0e57f
to
b2bc545
Compare
Diffuse output:
APK
DEX
|
b2bc545
to
c3e56b2
Compare
c3e56b2
to
2dcf6ee
Compare
@@ -103,6 +107,10 @@ private class FinancialConnectionsConsumerSessionRepositoryImpl( | |||
"android_connections" | |||
} | |||
|
|||
init { | |||
fraudDetectionDataRepository.refresh() |
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.
Similar approach to the Payments SDK: Refresh at launch, then use cached values in the request.
We’re only refreshing in the FinancialConnectionsConsumerSessionRepository
for now and not FinancialConnectionsRepository
, to avoid double work. We could move this into an initializer and run it just once, regardless of which objects get instantiated.
Summary
This pull request adds fraud detection data to
PaymentMethod
-related API calls in the Financial Connections module, namely the calls to/payment_methods
and/payment_details/share
.Motivation
BANKCON-15002
Testing
Screenshots
Changelog