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

10 lines
184 B
Ruby

# frozen_string_literal: true
module Api
module V1
class ResultTextSerializer < ActiveModel::Serializer
type :result_texts
attributes :name, :text
end
end
end