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

Summary

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

          belongs_to :promotion_category

          has_many :promotion_rules
          has_many :promotion_actions
          has_many :stores
        end
      end
    end
  end
end