From e1c65c565bf61fc9d54e6d9b3f38b8d7d9c14c21 Mon Sep 17 00:00:00 2001 From: Takeshi Umeda Date: Sun, 22 Mar 2020 10:40:03 +0900 Subject: [PATCH] Fix bookmarks also searchable (#13293) --- app/chewy/statuses_index.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/chewy/statuses_index.rb b/app/chewy/statuses_index.rb index f5735421c7..bec9ed88b2 100644 --- a/app/chewy/statuses_index.rb +++ b/app/chewy/statuses_index.rb @@ -47,6 +47,11 @@ class StatusesIndex < Chewy::Index data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) } end + crutch :bookmarks do |collection| + data = ::Bookmark.where(status_id: collection.map(&:id)).where(account: Account.local).pluck(:status_id, :account_id) + data.each.with_object({}) { |(id, name), result| (result[id] ||= []).push(name) } + end + root date_detection: false do field :id, type: 'long' field :account_id, type: 'long'