Sha256: 0154aa3de379ee53af61b1730e1d7d8e0ea5f47c952d2ef581a36e2726a8cf93
Contents?: true
Size: 1.27 KB
Versions: 7
Compression:
Stored size: 1.27 KB
Contents
# frozen_string_literal: true require "stripe/webhook" require "solidus_stripe/seeds" module SolidusStripe class Configuration # @!attribute [rw] webhook_events # @return [Array<Symbol>] stripe events to handle. You also need to # register them in the Stripe dashboard. For an event `:foo`, a matching # `:"stripe.foo"` event will be registered in `Spree::Bus`. attr_accessor :webhook_events # @!attribute [rw] webhook_signature_tolerance # @return [Integer] number of seconds while a webhook event is valid after # its creation. Defaults to `Stripe::Webhook::DEFAULT_TOLERANCE`. attr_accessor :webhook_signature_tolerance # @!attribute [rw] refund_reason_name # @return [String] `Spree::RefundReason#name` used for Stripe-generated # refunds. Defaults to {SolidusStripe::Seeds::DEFAULT_STRIPE_REFUND_REASON_NAME}. attr_accessor :refund_reason_name def initialize @webhook_events = [] @webhook_signature_tolerance = Stripe::Webhook::DEFAULT_TOLERANCE @refund_reason_name = Seeds::DEFAULT_STRIPE_REFUND_REASON_NAME end end class << self def configuration @configuration ||= Configuration.new end alias config configuration def configure yield configuration end end end
Version data entries
7 entries across 7 versions & 1 rubygems