mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
17 lines
323 B
Ruby
17 lines
323 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Spree
|
|
module PaymentHelper
|
|
def payment_intent(amount, status)
|
|
JSON.generate(
|
|
object: "payment_intent",
|
|
amount:,
|
|
status:,
|
|
charges: { data: [{ id: "ch_1234", amount: }] },
|
|
id: "12345",
|
|
livemode: false
|
|
)
|
|
end
|
|
end
|
|
end
|