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