scinote-web/app/serializers/api/v2/result_orderable_element_serializer.rb

19 lines
542 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Api
module V2
class ResultOrderableElementSerializer < ActiveModel::Serializer
attributes :id, :position, :orderable, :orderable_type
def orderable
case object.orderable_type
when 'ResultTable'
ResultTableSerializer.new(object.orderable, scope: { user: @instance_options[:user] }).as_json
when 'ResultText'
ResultTextSerializer.new(object.orderable, scope: { user: @instance_options[:user] }).as_json
end
end
end
end
end