mirror of
https://github.com/glitch-soc/mastodon
synced 2025-04-24 15:24:51 +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
|