about summary refs log tree commit diff
path: root/app/models/user.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/user.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/user.rb')
-rw-r--r--app/models/user.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/user.rb b/app/models/user.rb
index 25f77ed14..d83df28c2 100644
--- a/app/models/user.rb
+++ b/app/models/user.rb
@@ -224,6 +224,10 @@ class User < ApplicationRecord
     settings.notification_emails['digest']
   end
 
+  def allows_report_emails?
+    settings.notification_emails['report']
+  end
+
   def hides_network?
     @hides_network ||= settings.hide_network
   end