mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-03 13:33:32 -05:00
16 lines
315 B
Ruby
16 lines
315 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
|
|
|
|
def params
|
|
object.params.without('application_id')
|
|
end
|
|
end
|