1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-17 16:13:50 -05:00

7 lines
211 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class REST::ContextSerializer < ActiveModel::Serializer
has_many :ancestors, serializer: REST::StatusSerializer
has_many :descendants, serializer: REST::StatusSerializer
end