From 4c8b2ea40b022cfd1dfd5ec35a4ff6cf74b713f2 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sat, 9 Nov 2019 16:33:33 +0000 Subject: [PATCH] cleanup: rubocop: fix Layout/AlignArguments in app/helpers/email_addresses_helper.rb git-svn-id: http://svn.redmine.org/redmine/trunk@19034 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/helpers/email_addresses_helper.rb | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app/helpers/email_addresses_helper.rb b/app/helpers/email_addresses_helper.rb index aafa5bfb8..89dbf9a29 100644 --- a/app/helpers/email_addresses_helper.rb +++ b/app/helpers/email_addresses_helper.rb @@ -22,17 +22,19 @@ module EmailAddressesHelper # Returns a link to enable or disable notifications for the address def toggle_email_address_notify_link(address) if address.notify? - link_to l(:label_disable_notifications), + link_to( + l(:label_disable_notifications), user_email_address_path(address.user, address, :notify => '0'), :method => :put, :remote => true, :title => l(:label_disable_notifications), - :class => 'icon-only icon-email' + :class => 'icon-only icon-email') else - link_to l(:label_enable_notifications), + link_to( + l(:label_enable_notifications), user_email_address_path(address.user, address, :notify => '1'), :method => :put, :remote => true, :title => l(:label_enable_notifications), - :class => 'icon-only icon-email-disabled' + :class => 'icon-only icon-email-disabled') end end end -- 2.39.5