mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-06 07:06:23 +00:00
* feat: Email as a method for multi-factor authentication * perf: Optimize the MFA email sending logic * perf: Optimize some parameters * perf: Translate
7 lines
178 B
Python
7 lines
178 B
Python
from .custom import MFACustom
|
|
from .face import MFAFace
|
|
from .otp import MFAOtp, otp_failed_msg
|
|
from .radius import MFARadius
|
|
from .sms import MFASms
|
|
from .email import MFAEmail
|