diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-22 12:59:26 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-22 12:59:26 +0000 |
commit | 5fbc65e20b901f916f34ada7895dad42d5afd09f (patch) | |
tree | b8e96e22a0199afb0956330de9f9c07534aa2672 /lib/redmine/twofa/base.rb | |
parent | 6ec4b42555c04dc0c2817909d3ab86c19f99b86c (diff) | |
download | redmine-5fbc65e20b901f916f34ada7895dad42d5afd09f.tar.gz redmine-5fbc65e20b901f916f34ada7895dad42d5afd09f.zip |
remove spaces inside {} of lib/redmine/twofa/base.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20476 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/twofa/base.rb')
-rw-r--r-- | lib/redmine/twofa/base.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/redmine/twofa/base.rb b/lib/redmine/twofa/base.rb index 4c9c140f9..03738f696 100644 --- a/lib/redmine/twofa/base.rb +++ b/lib/redmine/twofa/base.rb @@ -61,7 +61,7 @@ module Redmine message: 'twofa_mail_body_security_notification_paired', # (mis-)use field here as value wouldn't get localized field: "twofa__#{scheme_name}__name", - url: { controller: 'my', action: 'account' } + url: {controller: 'my', action: 'account'} } ).deliver end @@ -88,7 +88,7 @@ module Redmine { title: :label_my_account, message: 'twofa_mail_body_security_notification_unpaired', - url: { controller: 'my', action: 'account' } + url: {controller: 'my', action: 'account'} } ).deliver end @@ -121,7 +121,7 @@ module Redmine originator: @user, title: :label_my_account, message: 'twofa_mail_body_backup_code_used', - url: { controller: 'my', action: 'account' } + url: {controller: 'my', action: 'account'} } ).deliver return true @@ -141,7 +141,7 @@ module Redmine { title: :label_my_account, message: 'twofa_mail_body_backup_codes_generated', - url: { controller: 'my', action: 'account' } + url: {controller: 'my', action: 'account'} } ).deliver tokens |