1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-29 15:28:27 +09:00
whippy-edition/app/serializers/rest/scheduled_status_serializer.rb

12 lines
242 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class REST::ScheduledStatusSerializer < ActiveModel::Serializer
attributes :id, :scheduled_at
has_many :media_attachments, serializer: REST::MediaAttachmentSerializer
def id
object.id.to_s
end
end