-
Notifications
You must be signed in to change notification settings - Fork 4.1k
feat(router): added retrieval flow for connector file uploads and added support for stripe connector #990
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
Conversation
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.
LGTM
@@ -49,6 +52,7 @@ pub struct FileMetadataUpdateInternal { | |||
provider_file_id: Option<String>, | |||
file_upload_provider: Option<storage_enums::FileUploadProvider>, | |||
available: bool, | |||
connector_label: Option<String>, |
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.
will connector label needs to be updated?
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.
Yes, after uploading a file to connector we need to store connector_label
so that we can use it to get merchant_connector_account
in file retrieval flow from connector.
e772d92
7c8524b
@@ -17,47 +17,54 @@ pub async fn get_evidence_request_data( | |||
state, | |||
evidence_request.cancellation_policy, | |||
merchant_account, | |||
false, |
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.
Make the bool as a enum
Type of Change
Description
Additional Changes
Motivation and Context
How did you test it?
Tested Manually

Checklist
cargo +nightly fmt --all
cargo clippy