-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into rmove-backwards-compat
- Loading branch information
Showing
159 changed files
with
14,406 additions
and
1,139 deletions.
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -322,9 +322,17 @@ region = "" # The AWS region used by the KMS SDK for decrypting data. | |
|
||
# EmailClient configuration. Only applicable when the `email` feature flag is enabled. | ||
[email] | ||
from_email = "[email protected]" # Sender email | ||
aws_region = "" # AWS region used by AWS SES | ||
base_url = "" # Base url used when adding links that should redirect to self | ||
sender_email = "[email protected]" # Sender email | ||
aws_region = "" # AWS region used by AWS SES | ||
base_url = "" # Base url used when adding links that should redirect to self | ||
allowed_unverified_days = 1 # Number of days the api calls ( with jwt token ) can be made without verifying the email | ||
active_email_client = "SES" # The currently active email client | ||
|
||
# Configuration for aws ses, applicable when the active email client is SES | ||
[email.aws_ses] | ||
email_role_arn = "" # The amazon resource name ( arn ) of the role which has permission to send emails | ||
sts_role_session_name = "" # An identifier for the assumed role session, used to uniquely identify a session. | ||
|
||
|
||
#tokenization configuration which describe token lifetime and payment method for specific connector | ||
[tokenization] | ||
|
@@ -427,9 +435,6 @@ credit = { currency = "USD" } | |
debit = { currency = "USD" } | ||
ach = { currency = "USD" } | ||
|
||
[pm_filters.stripe] | ||
cashapp = { country = "US", currency = "USD" } | ||
|
||
[pm_filters.prophetpay] | ||
card_redirect = { currency = "USD" } | ||
|
||
|
Oops, something went wrong.