1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-10-17 17:01:01 +00:00

fix source indent of lib/redmine/twofa/totp.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20659 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-12-17 13:10:31 +00:00
parent c18f92eeb6
commit 2edd00b3b7

View File

@ -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