diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-09-02 00:11:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-02 00:11:58 +0200 |
commit | c593d6df9cecabed5becf4e16c3d3b2e3de99d76 (patch) | |
tree | 9554f87ad1aeb754e6f9fdc63df135361806684c /app/controllers/settings | |
parent | a060beee726de5295e1f608231975a90b7709a0a (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/controllers/settings')
-rw-r--r-- | app/controllers/settings/preferences_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/settings/preferences_controller.rb b/app/controllers/settings/preferences_controller.rb index e2cb13167..b475c722d 100644 --- a/app/controllers/settings/preferences_controller.rb +++ b/app/controllers/settings/preferences_controller.rb @@ -46,7 +46,7 @@ class Settings::PreferencesController < ApplicationController :setting_noindex, :setting_theme, :setting_hide_network, - notification_emails: %i(follow follow_request reblog favourite mention digest), + notification_emails: %i(follow follow_request reblog favourite mention digest report), interactions: %i(must_be_follower must_be_following) ) end |