Add field to serialized local-only statuses

This commit is contained in:
Thibaut Girka 2018-11-13 17:22:47 +01:00 committed by ThibG
parent 759750801e
commit f84897c7d7
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@ class REST::StatusSerializer < ActiveModel::Serializer
attribute :muted, if: :current_user?
attribute :bookmarked, if: :current_user?
attribute :pinned, if: :pinnable?
attribute :local_only if :local?
belongs_to :reblog, serializer: REST::StatusSerializer
belongs_to :application