2017-10-04 10:22:52 +02:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('settings.notifications')
|
|
|
|
|
2020-03-08 16:04:03 +01:00
|
|
|
- content_for :heading_actions do
|
|
|
|
= button_tag t('generic.save_changes'), class: 'button', form: 'edit_notification'
|
|
|
|
|
|
|
|
= simple_form_for current_user, url: settings_preferences_notifications_path, html: { method: :put, id: 'edit_notification' } do |f|
|
2017-10-04 10:22:52 +02:00
|
|
|
= render 'shared/error_messages', object: current_user
|
|
|
|
|
2019-12-02 13:39:53 +01:00
|
|
|
%h4= t 'notifications.email_events'
|
2019-11-29 17:03:06 +01:00
|
|
|
|
2019-12-02 13:39:53 +01:00
|
|
|
%p.hint= t 'notifications.email_events_hint'
|
2019-11-29 17:03:06 +01:00
|
|
|
|
2017-10-04 10:22:52 +02:00
|
|
|
.fields-group
|
|
|
|
= f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
|
|
|
|
= ff.input :follow, as: :boolean, wrapper: :with_label
|
|
|
|
= ff.input :follow_request, as: :boolean, wrapper: :with_label
|
|
|
|
= ff.input :reblog, as: :boolean, wrapper: :with_label
|
|
|
|
= ff.input :favourite, as: :boolean, wrapper: :with_label
|
|
|
|
= ff.input :mention, as: :boolean, wrapper: :with_label
|
2017-11-14 21:12:57 +01:00
|
|
|
|
2018-09-02 00:11:58 +02:00
|
|
|
- if current_user.staff?
|
|
|
|
= ff.input :report, as: :boolean, wrapper: :with_label
|
2019-04-10 00:35:49 +02:00
|
|
|
= ff.input :pending_account, as: :boolean, wrapper: :with_label
|
2019-08-05 19:54:29 +02:00
|
|
|
= ff.input :trending_tag, as: :boolean, wrapper: :with_label
|
2018-09-02 00:11:58 +02:00
|
|
|
|
2017-10-04 10:22:52 +02:00
|
|
|
.fields-group
|
|
|
|
= f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
|
|
|
|
= ff.input :digest, as: :boolean, wrapper: :with_label
|
|
|
|
|
2019-12-02 13:39:53 +01:00
|
|
|
%h4= t 'notifications.other_settings'
|
2019-11-29 17:03:06 +01:00
|
|
|
|
2017-10-04 10:22:52 +02:00
|
|
|
.fields-group
|
|
|
|
= f.simple_fields_for :interactions, hash_to_object(current_user.settings.interactions) do |ff|
|
|
|
|
= ff.input :must_be_follower, as: :boolean, wrapper: :with_label
|
|
|
|
= ff.input :must_be_following, as: :boolean, wrapper: :with_label
|
2017-11-14 21:12:57 +01:00
|
|
|
= ff.input :must_be_following_dm, as: :boolean, wrapper: :with_label
|