Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stripe/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
payment {
stripe {
client-id: "ca_QQJL4CURRIF60JfEkBpsQaFR3piC14uB" #acct_1PZSi4RoAUNlu6LY
client-id: null
client-id: ${?STRIPE_CLIENT_ID}
api-key: "sk_test_51PZSi4RoAUNlu6LYA6opFyXxSM9U7Q2C0pHDbFnk92MJdOEEvREmcvW7ZlRim2ebZaLc8Nf0sejbcef5Bri7xMJj009Ps5fBSK"
api-key: null
api-key: ${?STRIPE_API_KEY}
baseUrl = "https://api.stripe.com"
base-url = ${payment.stripe.baseUrl}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ object StripeApi {

val url = s"${config.hooksBaseUrl}?hash=$hash"

log.info(
s"Creating / updating Stripe webhook endpoint for provider ${provider.providerId} at ${config.hooksBaseUrl}?hash=*****"
)

import scala.jdk.CollectionConverters._

Try {
Expand Down
Loading