mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
19 lines
502 B
Ruby
19 lines
502 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module Admin
|
|
class PaymentMethodSerializer < ActiveModel::Serializer
|
|
delegate :serializable_hash, to: :method_serializer
|
|
|
|
def method_serializer
|
|
if object.type == 'Spree::Gateway::StripeConnect' ||
|
|
object.type == 'Spree::Gateway::StripeSCA'
|
|
Api::Admin::PaymentMethod::StripeSerializer.new(object)
|
|
else
|
|
Api::Admin::PaymentMethod::BaseSerializer.new(object)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|