logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

context_serializer.rb (211B)


  1. # frozen_string_literal: true
  2. class REST::ContextSerializer < ActiveModel::Serializer
  3. has_many :ancestors, serializer: REST::StatusSerializer
  4. has_many :descendants, serializer: REST::StatusSerializer
  5. end