1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-26 10:21:14 +00:00

cleanup: rubocop: fix Layout/AlignArguments in app/models/mailer.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@18934 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2019-11-08 00:45:52 +00:00
parent f7a6cf8d1b
commit 674a62b728

View File

@ -421,7 +421,8 @@ class Mailer < ActionMailer::Base
# TODO: maybe not the best way to handle this
return if user.admin? && user.login == 'admin' && user.mail == 'admin@example.net'
deliver_security_notification(user,
deliver_security_notification(
user,
sender,
message: :mail_body_password_updated,
title: :button_change_password,
@ -458,10 +459,10 @@ class Mailer < ActionMailer::Base
def security_notification(user, sender, options={})
@sender = sender
redmine_headers 'Sender' => sender.login
@message = l(options[:message],
field: (options[:field] && l(options[:field])),
value: options[:value]
)
@message =
l(options[:message],
field: (options[:field] && l(options[:field])),
value: options[:value])
@title = options[:title] && l(options[:title])
@remote_ip = options[:remote_ip] || @sender.remote_ip
@url = options[:url] && (options[:url].is_a?(Hash) ? url_for(options[:url]) : options[:url])