about summary refs log tree commit diff
path: root/app/serializers/rest/context_serializer.rb
blob: 44515c85d7d439c0028846077d880c22542b74d9 (plain) (blame)
1
2
3
4
5
6
# frozen_string_literal: true

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