mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-15 12:44:24 -05:00
14 lines
239 B
Ruby
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
|