mirror of
https://github.com/whippyshou/mastodon
synced 2024-11-29 15:28:27 +09:00
a49d43d112
Fix #340
12 lines
242 B
Ruby
12 lines
242 B
Ruby
# 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
|