mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
419 B
16 lines
419 B
from django.db.models import TextChoices
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class Connectivity(TextChoices):
|
|
UNKNOWN = 'unknown', _('Unknown')
|
|
OK = 'ok', _('Ok')
|
|
FAILED = 'failed', _('Failed')
|
|
|
|
|
|
class SecretType(TextChoices):
|
|
PASSWORD = 'password', _('Password')
|
|
SSH_KEY = 'ssh_key', _('SSH key')
|
|
ACCESS_KEY = 'access_key', _('Access key')
|
|
TOKEN = 'token', _('Token')
|