diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-10-28 06:35:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-28 06:35:03 +0100 |
commit | 795f0107d23c1c9bd039f6449fa1e094ab7653a7 (patch) | |
tree | ec4e3c3aaefbfe79b9e86c801516e37db10610fd /app/models | |
parent | 6f78500d4f515c65ec66416e2d78bc9ae247f91c (diff) |
Include preview cards in status entity in REST API (#9120)
* Include preview cards in status entity in REST API * Display preview card in-stream * Improve in-stream display of preview cards
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/status.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/models/status.rb b/app/models/status.rb index bcb7dd373..cb2c01040 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -89,6 +89,7 @@ class Status < ApplicationRecord :conversation, :status_stat, :tags, + :preview_cards, :stream_entry, active_mentions: :account, reblog: [ @@ -96,6 +97,7 @@ class Status < ApplicationRecord :application, :stream_entry, :tags, + :preview_cards, :media_attachments, :conversation, :status_stat, @@ -163,6 +165,10 @@ class Status < ApplicationRecord reblog end + def preview_card + preview_cards.first + end + def title if destroyed? "#{account.acct} deleted status" |