Fix wrong param name in scheduled statuses and return params in API (#9725)
The database column and API param are called in_reply_to_id, not in_reply_to_status_id, so it makes no sense to encode it that wayth-downstream
parent
c3922e1c3c
commit
bf1ee883d8
@ -1,11 +1,15 @@
|
|||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class REST::ScheduledStatusSerializer < ActiveModel::Serializer
|
class REST::ScheduledStatusSerializer < ActiveModel::Serializer
|
||||||
attributes :id, :scheduled_at
|
attributes :id, :scheduled_at, :params
|
||||||
|
|
||||||
has_many :media_attachments, serializer: REST::MediaAttachmentSerializer
|
has_many :media_attachments, serializer: REST::MediaAttachmentSerializer
|
||||||
|
|
||||||
def id
|
def id
|
||||||
object.id.to_s
|
object.id.to_s
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def params
|
||||||
|
object.params.without(:application_id)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in new issue