mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
16 lines
414 B
Ruby
16 lines
414 B
Ruby
module Api
|
|
module Admin
|
|
class PaymentMethodSerializer < ActiveModel::Serializer
|
|
delegate :serializable_hash, to: :method_serializer
|
|
|
|
def method_serializer
|
|
if object.type == 'Spree::Gateway::StripeConnect'
|
|
Api::Admin::PaymentMethod::StripeSerializer.new(object)
|
|
else
|
|
Api::Admin::PaymentMethod::BaseSerializer.new(object)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|