1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-04 09:48:40 +09:00
whippy-edition/app/serializers/rest/extended_description_serializer.rb

14 lines
230 B
Ruby

# frozen_string_literal: true
class REST::ExtendedDescriptionSerializer < ActiveModel::Serializer
attributes :updated_at, :content
def updated_at
object.updated_at&.iso8601
end
def content
object.text
end
end