2017-10-04 01:22:52 -07:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('settings.notifications')
|
|
|
|
|
2019-06-06 18:39:24 -07:00
|
|
|
= simple_form_for current_user, url: settings_preferences_notifications_path, html: { method: :put } do |f|
|
2017-10-04 01:22:52 -07:00
|
|
|
= render 'shared/error_messages', object: current_user
|
|
|
|
|
2019-11-29 08:03:06 -08:00
|
|
|
%h4= t('notifications.email_events')
|
|
|
|
|
|
|
|
%p.hint = t('notifications.email_events_hint')
|
|
|
|
|
2017-10-04 01:22:52 -07: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 12:12:57 -08:00
|
|
|
|
2018-09-01 15:11:58 -07:00
|
|
|
- if current_user.staff?
|
|
|
|
= ff.input :report, as: :boolean, wrapper: :with_label
|
2019-04-09 15:35:49 -07:00
|
|
|
= ff.input :pending_account, as: :boolean, wrapper: :with_label
|
2019-08-05 10:54:29 -07:00
|
|
|
= ff.input :trending_tag, as: :boolean, wrapper: :with_label
|
2018-09-01 15:11:58 -07:00
|
|
|
|
2017-10-04 01:22:52 -07: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-11-29 08:03:06 -08:00
|
|
|
%h4 = t('notifications.other_settings')
|
|
|
|
|
2017-10-04 01:22:52 -07: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 12:12:57 -08:00
|
|
|
= ff.input :must_be_following_dm, as: :boolean, wrapper: :with_label
|
2017-10-04 01:22:52 -07:00
|
|
|
|
|
|
|
.actions
|
|
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|