Added has_quote to status_serializer and set in status.rb

• Added:
- has_quote to status_serializer and set in status.rb
This commit is contained in:
mgabdev
2020-08-05 23:17:17 -05:00
parent bc54a281e6
commit 32c62955bf
2 changed files with 7 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ class REST::StatusSerializer < ActiveModel::Serializer
attributes :id, :created_at, :revised_at, :in_reply_to_id, :in_reply_to_account_id,
:sensitive, :spoiler_text, :visibility, :language,
:uri, :url, :replies_count, :reblogs_count,
:favourites_count, :quote_of_id, :expires_at
:favourites_count, :quote_of_id, :expires_at, :has_quote
attribute :favourited, if: :current_user?
attribute :reblogged, if: :current_user?