about summary refs log tree commit diff
path: root/app/models/report.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2018-09-03 17:40:03 +0200
committerGitHub <noreply@github.com>2018-09-03 17:40:03 +0200
commit174548f3bd0f1d42a28a5c501aad7116f18eaddb (patch)
tree24b32d52e098fac57e91fd26be1311b7b677c9c9 /app/models/report.rb
parente915bc3e9e32e34bf80d1bd66ee3f80d2ca37969 (diff)
parent6c233a04a04f674b1be75ce7c6c4547c7a006797 (diff)
Merge pull request #702 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/models/report.rb')
-rw-r--r--app/models/report.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/report.rb b/app/models/report.rb
index efe385b2d..2804020f5 100644
--- a/app/models/report.rb
+++ b/app/models/report.rb
@@ -60,6 +60,10 @@ class Report < ApplicationRecord
     !action_taken?
   end
 
+  def unresolved_siblings?
+    Report.where.not(id: id).where(target_account_id: target_account_id).unresolved.exists?
+  end
+
   def history
     time_range = created_at..updated_at