This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-07 03:42:33 -08:00
|
|
|
object @status
|
|
|
|
attributes :id, :created_at, :in_reply_to_id
|
|
|
|
|
2016-03-07 03:52:25 -08:00
|
|
|
node(:uri) { |status| uri_for_target(status) }
|
2016-03-24 04:40:55 -07:00
|
|
|
node(:content) { |status| content_for_status(status) }
|
2016-03-07 03:52:25 -08:00
|
|
|
node(:url) { |status| url_for_target(status) }
|
2016-03-12 07:09:46 -08:00
|
|
|
node(:reblogs_count) { |status| status.reblogs_count }
|
|
|
|
node(:favourites_count) { |status| status.favourites_count }
|
2016-08-18 08:13:41 -07:00
|
|
|
node(:favourited) { |status| current_account.favourited?(status) }
|
|
|
|
node(:reblogged) { |status| current_account.reblogged?(status) }
|
2016-03-07 03:42:33 -08:00
|
|
|
|
|
|
|
child :reblog => :reblog do
|
|
|
|
extends('api/statuses/show')
|
|
|
|
end
|
|
|
|
|
|
|
|
child :account do
|
|
|
|
extends('api/accounts/show')
|
|
|
|
end
|