mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-24 00:54:02 -05:00
10 lines
192 B
Ruby
10 lines
192 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::TranslationSerializer < ActiveModel::Serializer
|
|
attributes :content, :detected_source_language, :provider
|
|
|
|
def content
|
|
object.text
|
|
end
|
|
end
|