From aa74eb531da6f918bfe6d4a3648ae193ef053188 Mon Sep 17 00:00:00 2001 From: Recker Swartz Date: Fri, 18 Feb 2022 11:11:59 +0530 Subject: [PATCH] Update two_factor_authentication.rb --- lib/two_factor_authentication.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/two_factor_authentication.rb b/lib/two_factor_authentication.rb index 7b1bbbc..87c1740 100644 --- a/lib/two_factor_authentication.rb +++ b/lib/two_factor_authentication.rb @@ -32,6 +32,12 @@ module Devise mattr_accessor :delete_cookie_on_logout @@delete_cookie_on_logout = false + + mattr_accessor :issuer + @@issuer = '' + + mattr_accessor :logo_url + @@logo_url = '' end module TwoFactorAuthentication