about summary refs log tree commit diff
path: root/app/controllers/admin/trends/links_controller.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/controllers/admin/trends/links_controller.rb
parent678fc4d292664550df554a224b8fd59dcef20d35 (diff)
Add support for language preferences for trending statuses and links (#18288)
Diffstat (limited to 'app/controllers/admin/trends/links_controller.rb')
-rw-r--r--app/controllers/admin/trends/links_controller.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/controllers/admin/trends/links_controller.rb b/app/controllers/admin/trends/links_controller.rb
index a497eae41..a3454f2da 100644
--- a/app/controllers/admin/trends/links_controller.rb
+++ b/app/controllers/admin/trends/links_controller.rb
@@ -4,6 +4,7 @@ class Admin::Trends::LinksController < Admin::BaseController
   def index
     authorize :preview_card, :review?
 
+    @locales       = PreviewCardTrend.pluck('distinct language')
     @preview_cards = filtered_preview_cards.page(params[:page])
     @form          = Trends::PreviewCardBatch.new
   end