scinote-web/app/serializers/api/v1/repository_text_value_serializer.rb
2018-08-24 15:36:19 +02:00

10 lines
177 B
Ruby

# frozen_string_literal: true
module Api
module V1
class RepositoryTextValueSerializer < ActiveModel::Serializer
attribute :formatted, key: :text
end
end
end