From 2ee6a7cead15d589a56b95ce0f6f1d6dabb45759 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Mon, 31 Aug 2020 21:45:19 +0000 Subject: [PATCH] Fix an error "uninitialized constant Redmine::Twofa::Base" when accessing My account in production mode (#1237, #33932). git-svn-id: http://svn.redmine.org/redmine/trunk@19997 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/redmine/twofa/totp.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/redmine/twofa/totp.rb b/lib/redmine/twofa/totp.rb index ff4fe9cf1..e304208a2 100644 --- a/lib/redmine/twofa/totp.rb +++ b/lib/redmine/twofa/totp.rb @@ -17,6 +17,8 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +require_relative 'base' + module Redmine module Twofa class Totp < Base -- 2.39.5