mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-11 19:12:35 +00:00
11 lines
243 B
Python
11 lines
243 B
Python
from django.db.models import TextChoices
|
|
|
|
RSA_PRIVATE_KEY = 'rsa_private_key'
|
|
RSA_PUBLIC_KEY = 'rsa_public_key'
|
|
|
|
|
|
class ConfirmType(TextChoices):
|
|
RELOGIN = 'relogin', 'Re-Login'
|
|
PASSWORD = 'password', 'Password'
|
|
MFA = 'mfa', 'MFA'
|