2022-09-23 21:00:12 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::TranslationSerializer < ActiveModel::Serializer
|
2022-10-24 16:37:57 +00:00
|
|
|
attributes :content, :detected_source_language, :provider
|
2022-09-23 21:00:12 +00:00
|
|
|
|
|
|
|
def content
|
|
|
|
object.text
|
|
|
|
end
|
|
|
|
end
|