From e7df346c928b9812839391a0a3bc6ffd8cca20d0 Mon Sep 17 00:00:00 2001 From: Boris Gorbylev Date: Mon, 13 Jan 2020 15:03:44 +0300 Subject: [PATCH] Fixed None protocol --- lib/redmine_two_fa/protocols/none.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/redmine_two_fa/protocols/none.rb b/lib/redmine_two_fa/protocols/none.rb index 1274f60..7240981 100644 --- a/lib/redmine_two_fa/protocols/none.rb +++ b/lib/redmine_two_fa/protocols/none.rb @@ -3,5 +3,9 @@ class None < BaseProtocol def bypass? true end + + def initial_partial + 'account/init_2fa/none' + end end end