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 /config | |
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 'config')
-rw-r--r-- | config/locales/simple_form.en.yml | 1 | ||||
-rw-r--r-- | config/settings.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/config/locales/simple_form.en.yml b/config/locales/simple_form.en.yml index 59ebe0a7e..2e4cb1eff 100644 --- a/config/locales/simple_form.en.yml +++ b/config/locales/simple_form.en.yml @@ -92,6 +92,7 @@ en: follow_request: Send e-mail when someone requests to follow you mention: Send e-mail when someone mentions you reblog: Send e-mail when someone boosts your status + report: Send e-mail when a new report is submitted 'no': 'No' required: mark: "*" diff --git a/config/settings.yml b/config/settings.yml index 399f25a9a..78a801406 100644 --- a/config/settings.yml +++ b/config/settings.yml @@ -39,6 +39,7 @@ defaults: &defaults mention: false follow_request: true digest: true + report: true interactions: must_be_follower: false must_be_following: false |