about summary refs log tree commit diff
path: root/app/models
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-05-10 09:50:54 +0200
committerGitHub <noreply@github.com>2020-05-10 09:50:54 +0200
commita4240fd0272eb79b7d99cccfa7d14e8a1e12921d (patch)
treec6da3d4c75018c01c09fa0b582e6ca0b35aea790 /app/models
parent73f3842284ac8ed6519e4d680ab17bde47dfbcae (diff)
Improve RSS entries for statuses (#13592)
* Improve RSS entries for statuses

- Render polls in both accounts and tags serializers
- Refactor RSS serializers
- Change title preview to include ellipsis when truncated
- Change title preview to show CW instead of toot text
- Add tests

* Remove title from OEmbed serialization

Twitter doesn't serialize title either, and tihs allows us to move the
title formatting code to the RSS serializers.
Diffstat (limited to 'app/models')
-rw-r--r--app/models/status.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/models/status.rb b/app/models/status.rb
index a938ff032..8c7fe8dfa 100644
--- a/app/models/status.rb
+++ b/app/models/status.rb
@@ -197,14 +197,6 @@ class Status < ApplicationRecord
     preview_cards.first
   end
 
-  def title
-    if destroyed?
-      "#{account.acct} deleted status"
-    else
-      reblog? ? "#{account.acct} shared a status by #{reblog.account.acct}" : "New status by #{account.acct}"
-    end
-  end
-
   def hidden?
     !distributable?
   end