api/app/serializers/spree/api/v2/platform/address_serializer.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Spree
  module Api
    module V2
      module Platform
        class AddressSerializer < BaseSerializer
          include ResourceSerializerConcern

          belongs_to :country
          belongs_to :state
          belongs_to :user
        end
      end
    end
  end
end