zammad/lib/auth/two_factor/authentication_method.rb

34 lines
819 B
Ruby
Raw Permalink Normal View History

# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
class Auth::TwoFactor::AuthenticationMethod < Auth::TwoFactor::Method
include Mixin::RequiredSubPaths
# Implement it in the real method itself if you need it.
2024-01-29 18:07:33 +00:00
# This needs to be used for e.g. sending out emails or SMS.
def initiate_authentication; end
def verify(payload, configuration = user_two_factor_preference_configuration)
raise NotImplementedError
end
def initiate_configuration
raise NotImplementedError
end
def available?
true
end
def related_setting_name
"two_factor_authentication_method_#{method_name}"
end
def user_two_factor_preference
user&.two_factor_preferences&.authentication_methods&.find_by(method: method_name)
end
def without_client_config?
false
end
end