diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-04-08 18:03:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-08 18:03:31 +0200 |
commit | 8e20e16cf030fef48850df4764bbf13a317f6b0c (patch) | |
tree | 3ae94f1665c7cc80df310edf688758dd67cd69e5 /app/controllers | |
parent | fd9a9b07c2cd19ef08d15e138fd3fc59fc5318b6 (diff) |
Change e-mail notifications to only be sent when recipient is offline (#17984)
* Change e-mail notifications to only be sent when recipient is offline Change the default for follow and mention notifications back on * Add preference to always send e-mail notifications * Change wording
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/settings/preferences_controller.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/settings/preferences_controller.rb b/app/controllers/settings/preferences_controller.rb index c7492700c..bfe651bc6 100644 --- a/app/controllers/settings/preferences_controller.rb +++ b/app/controllers/settings/preferences_controller.rb @@ -54,7 +54,8 @@ class Settings::PreferencesController < Settings::BaseController :setting_use_pending_items, :setting_trends, :setting_crop_images, - notification_emails: %i(follow follow_request reblog favourite mention digest report pending_account trending_tag), + :setting_always_send_emails, + notification_emails: %i(follow follow_request reblog favourite mention digest report pending_account trending_tag appeal), interactions: %i(must_be_follower must_be_following must_be_following_dm) ) end |