about summary refs log tree commit diff
path: root/app/models/report.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2018-09-02 00:11:58 +0200
committerGitHub <noreply@github.com>2018-09-02 00:11:58 +0200
commitc593d6df9cecabed5becf4e16c3d3b2e3de99d76 (patch)
tree9554f87ad1aeb754e6f9fdc63df135361806684c /app/models/report.rb
parenta060beee726de5295e1f608231975a90b7709a0a (diff)
Add preference for report notification e-mails, skip for duplicates (#8559)
If an unresolved report for the same target account already exists,
no new notification is generated
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