scinote-web/app/serializers/api/v1/result_table_serializer.rb
2018-09-13 13:38:11 +02:00

11 lines
183 B
Ruby

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