mirror of
https://github.com/mastodon/mastodon.git
synced 2025-07-15 08:48:15 +00:00
7 lines
215 B
Ruby
7 lines
215 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::V1::ContextSerializer < ActiveModel::Serializer
|
|
has_many :ancestors, serializer: REST::StatusSerializer
|
|
has_many :descendants, serializer: REST::StatusSerializer
|
|
end
|