Skip to content

Commit

Permalink
fix: The path for Config was wrong, so it was corrected.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrunet committed May 30, 2023
1 parent 1f76165 commit ab9a819
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/katana_cli/lib/action/stripe/stripe.dart
Original file line number Diff line number Diff line change
Expand Up @@ -472,12 +472,12 @@ class StripeCliAction extends CliCommand with CliActionMixin {
[
firebaseCommand,
"functions:config:set",
"stripe.secret_key=$secretKey",
"purchase.stripe.secret_key=$secretKey",
if (webHookSecret.isNotEmpty) "stripe.webhook_secret=$webHookSecret",
"stripe.email_provider=$emailProvider",
"stripe.user_path=plugins/stripe/user",
"stripe.payment_path=payment",
"stripe.purchase_path=purchase",
"purchase.stripe.email_provider=$emailProvider",
"purchase.stripe.user_path=plugins/stripe/user",
"purchase.stripe.payment_path=payment",
"purchase.stripe.purchase_path=purchase",
if (enableConnect && webHookConnectSecret.isNotEmpty)
"stripe.webhook_connect_secret=$webHookConnectSecret",
if (emailProvider == "gmail") ...[
Expand Down

0 comments on commit ab9a819

Please sign in to comment.