1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-02 08:48:33 +09:00
whippy-edition/app/views/api/v1/statuses/context.rabl
2016-09-27 16:59:08 +02:00

14 lines
239 B
Ruby

object false
node :ancestors do
@ancestors.map do |status|
partial('api/v1/statuses/show', object: status)
end
end
node :descendants do
@descendants.map do |status|
partial('api/v1/statuses/show', object: status)
end
end