2018-08-07 21:19:24 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-08-07 20:19:49 +08:00
|
|
|
module Api
|
|
|
|
module V1
|
|
|
|
class RepositoryTextValueSerializer < ActiveModel::Serializer
|
2018-08-23 20:52:00 +08:00
|
|
|
attribute :formatted, key: :text
|
2018-08-07 20:19:49 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|