diff --git a/lib/two_factor_authentication/models/two_factor_authenticatable.rb b/lib/two_factor_authentication/models/two_factor_authenticatable.rb index 01009a6..b4c104d 100644 --- a/lib/two_factor_authentication/models/two_factor_authenticatable.rb +++ b/lib/two_factor_authentication/models/two_factor_authenticatable.rb @@ -35,9 +35,9 @@ module Devise ROTP::TOTP.new(self.otp_column).at(time) end - def provisioning_uri(account = nil) + def provisioning_uri(account = nil, options = {}) account ||= self.email if self.respond_to?(:email) - ROTP::TOTP.new(self.otp_column).provisioning_uri(account) + ROTP::TOTP.new(self.otp_column, options).provisioning_uri(account) end def otp_column