summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-12-17 13:10:31 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-12-17 13:10:31 +0000
commit2edd00b3b70e80d770de56724725c839f7c85697 (patch)
tree6ea666f6fb1097131c683d46d95eb70a3ff29e54 /lib
parentc18f92eeb6e47de99e1a6e5ce193cda5afe3aa62 (diff)
downloadredmine-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.rb10
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