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