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

Summary

Maintainability
A
0 mins
Test Coverage
module Spree
  module Api
    module V2
      module Platform
        class ImageSerializer < BaseSerializer
          include ::Spree::Api::V2::ImageTransformationConcern

          set_type :image

          attributes :styles, :position, :alt, :created_at, :updated_at, :original_url

          belongs_to :viewable, polymorphic: true
        end
      end
    end
  end
end