The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
1.3 KiB

  1. - content_for :page_title do
  2. = t('settings.notifications')
  3. = simple_form_for current_user, url: settings_notifications_path, html: { method: :put } do |f|
  4. = render 'shared/error_messages', object: current_user
  5. .fields-group
  6. = f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
  7. = ff.input :follow, as: :boolean, wrapper: :with_label
  8. = ff.input :follow_request, as: :boolean, wrapper: :with_label
  9. = ff.input :reblog, as: :boolean, wrapper: :with_label
  10. = ff.input :favourite, as: :boolean, wrapper: :with_label
  11. = ff.input :mention, as: :boolean, wrapper: :with_label
  12. - if current_user.staff?
  13. = ff.input :report, as: :boolean, wrapper: :with_label
  14. .fields-group
  15. = f.simple_fields_for :notification_emails, hash_to_object(current_user.settings.notification_emails) do |ff|
  16. = ff.input :digest, as: :boolean, wrapper: :with_label
  17. .fields-group
  18. = f.simple_fields_for :interactions, hash_to_object(current_user.settings.interactions) do |ff|
  19. = ff.input :must_be_follower, as: :boolean, wrapper: :with_label
  20. = ff.input :must_be_following, as: :boolean, wrapper: :with_label
  21. = ff.input :must_be_following_dm, as: :boolean, wrapper: :with_label
  22. .actions
  23. = f.button :button, t('generic.save_changes'), type: :submit