api/app/serializers/spree/api/v2/platform/webhooks/event_serializer.rb

Summary

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

            belongs_to :subscriber
          end
        end
      end
    end
  end
end