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

11 lines
183 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Api
module V1
class ResultTableSerializer < ActiveModel::Serializer
type :result_tables
attributes :table_id
end
end
end