diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-12-17 13:10:31 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-12-17 13:10:31 +0000 |
commit | 2edd00b3b70e80d770de56724725c839f7c85697 (patch) | |
tree | 6ea666f6fb1097131c683d46d95eb70a3ff29e54 /lib | |
parent | c18f92eeb6e47de99e1a6e5ce193cda5afe3aa62 (diff) | |
download | redmine-2edd00b3b70e80d770de56724725c839f7c85697.tar.gz redmine-2edd00b3b70e80d770de56724725c839f7c85697.zip |
fix source indent of lib/redmine/twofa/totp.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20659 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/twofa/totp.rb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/redmine/twofa/totp.rb b/lib/redmine/twofa/totp.rb index 90b5da280..9e826fb99 100644 --- a/lib/redmine/twofa/totp.rb +++ b/lib/redmine/twofa/totp.rb @@ -54,10 +54,12 @@ module Redmine end def init_pairing_view_variables - super.merge({ - provisioning_uri: provisioning_uri, - totp_key: @user.twofa_totp_key - }) + super.merge( + { + provisioning_uri: provisioning_uri, + totp_key: @user.twofa_totp_key + } + ) end private |