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

11 lines
177 B
Ruby

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