mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
12 lines
350 B
Ruby
12 lines
350 B
Ruby
class Api::Admin::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
|