about summary refs log tree commit diff
path: root/app/models/status.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-10-08 16:45:40 +0200
committerGitHub <noreply@github.com>2022-10-08 16:45:40 +0200
commit45ebdb72ca1678eb30e6087f61bd019c7ea903f4 (patch)
tree39fa4a3185bf358efa8c954a42b39b927d3b904b /app/models/status.rb
parent678fc4d292664550df554a224b8fd59dcef20d35 (diff)
Add support for language preferences for trending statuses and links (#18288)
Diffstat (limited to 'app/models/status.rb')
-rw-r--r--app/models/status.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/status.rb b/app/models/status.rb
index de958aaf3..4805abfea 100644
--- a/app/models/status.rb
+++ b/app/models/status.rb
@@ -75,6 +75,7 @@ class Status < ApplicationRecord
   has_one :notification, as: :activity, dependent: :destroy
   has_one :status_stat, inverse_of: :status
   has_one :poll, inverse_of: :status, dependent: :destroy
+  has_one :trend, class_name: 'StatusTrend', inverse_of: :status
 
   validates :uri, uniqueness: true, presence: true, unless: :local?
   validates :text, presence: true, unless: -> { with_media? || reblog? }