Sha256: 312665b4e55344684c0989796705ead9c3d78a51383247ac94554791f1cf2890

Contents?: true

Size: 619 Bytes

Versions: 62

Compression:

Stored size: 619 Bytes

Contents

module Workarea
  class Payment
    class Capture
      class StoreCredit
        include OperationImplementation

        def complete!
          # noop, authorization does the capture
          transaction.response = ActiveMerchant::Billing::Response.new(
            true,
            I18n.t('workarea.payment.store_credit_capture')
          )
        end

        def cancel!
          # noop, nothing to cancel
          transaction.response = ActiveMerchant::Billing::Response.new(
            true,
            I18n.t('workarea.payment.store_credit_capture')
          )
        end
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.4.13 app/models/workarea/payment/capture/store_credit.rb
workarea-core-3.4.12 app/models/workarea/payment/capture/store_credit.rb