two_factor_failed.rb 260 B

123456789
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class Auth::Error::TwoFactorFailed < Auth::Error::Base
  3. MESSAGE = __('Login failed. Please double-check your two-factor authentication method.')
  4. def message
  5. MESSAGE
  6. end
  7. end