scinote-web/app/serializers/api/v1/result_table_serializer.rb

19 lines
322 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Api
module V1
class ResultTableSerializer < ActiveModel::Serializer
type :result_tables
attributes :table_id, :table_contents
def table_id
object.table&.id
end
def table_contents
object.table&.contents
end
end
end
end