mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-26 21:53:41 +01:00
9 lines
192 B
Ruby
9 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
|