Skip to content
Snippets Groups Projects
Unverified Commit 5a1fb6ef authored by Takeshi Umeda's avatar Takeshi Umeda Committed by GitHub
Browse files

Fix bookmarks also searchable (#13293)

parent 56531d64
No related branches found
No related tags found
No related merge requests found
......@@ -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'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment