mastodon/app/views/api/statuses/show.rabl

26 lines
839 B
Plaintext
Raw Normal View History

object @status
attributes :id, :created_at, :in_reply_to_id
2016-03-07 12:52:25 +01:00
node(:uri) { |status| uri_for_target(status) }
node(:content) { |status| content_for_status(status) }
2016-03-07 12:52:25 +01:00
node(:url) { |status| url_for_target(status) }
node(:reblogs_count) { |status| status.reblogs_count }
node(:favourites_count) { |status| status.favourites_count }
2016-08-18 17:13:41 +02:00
node(:favourited) { |status| current_account.favourited?(status) }
node(:reblogged) { |status| current_account.reblogged?(status) }
child :reblog => :reblog do
extends('api/statuses/show')
end
child :account do
extends('api/accounts/show')
end
child :media_attachments, object_root: false do
attributes :id, :remote_url
node(:url) { |media| full_asset_url(media.file.url) }
node(:preview_url) { |media| full_asset_url(media.file.url(:small)) }
end