forked from treehouse/mastodon
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
|