mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 01:08:08 +01:00
13 lines
233 B
Ruby
13 lines
233 B
Ruby
object false
|
|
|
|
node :ancestors do
|
|
@ancestors.map do |status|
|
|
partial('api/statuses/show', object: status)
|
|
end
|
|
end
|
|
|
|
node :descendants do
|
|
@descendants.map do |status|
|
|
partial('api/statuses/show', object: status)
|
|
end
|
|
end
|