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