mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-15 14:53:17 +00:00
11 lines
251 B
Ruby
11 lines
251 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::ScheduledStatusSerializer < ActiveModel::Serializer
|
|
attributes :id, :scheduled_at, :params
|
|
|
|
has_many :media_attachments, serializer: REST::MediaAttachmentSerializer
|
|
|
|
def id
|
|
object.id.to_s
|
|
end
|
|
end
|