From 762157ee4e6bab04fb66903651e901bc83e333bb Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 8 Sep 2016 21:23:29 +0200 Subject: Fix for single status pages --- app/models/status.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'app/models/status.rb') diff --git a/app/models/status.rb b/app/models/status.rb index 12c58733c..4adf2944c 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -75,4 +75,12 @@ class Status < ApplicationRecord def self.as_mentions_timeline(account) self.where(id: Mention.where(account: account).pluck(:status_id)).with_includes.with_counters end + + def self.favourites_map(status_ids, account_id) + Favourite.where(status_id: status_ids).where(account_id: account_id).map { |f| [f.status_id, true] }.to_h + end + + def self.reblogs_map(status_ids, account_id) + self.where(reblog_of_id: status_ids).where(account_id: account_id).map { |s| [s.reblog_of_id, true] }.to_h + end end -- cgit