This repository has been archived on 2024-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/views/api/v1/statuses/context.rabl

14 lines
239 B
Plaintext
Raw Normal View History

object false
node :ancestors do
@ancestors.map do |status|
2016-09-27 10:58:23 -04:00
partial('api/v1/statuses/show', object: status)
end
end
node :descendants do
@descendants.map do |status|
2016-09-27 10:58:23 -04:00
partial('api/v1/statuses/show', object: status)
end
end