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.
22 lines
636 B
22 lines
636 B
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from common.db.models import ChoicesMixin
|
|
|
|
__all__ = ['Category']
|
|
|
|
|
|
class Category(ChoicesMixin, models.TextChoices):
|
|
HOST = 'host', _('Host')
|
|
DEVICE = 'device', _("Device")
|
|
DATABASE = 'database', _("Database")
|
|
CLOUD = 'cloud', _("Cloud service")
|
|
WEB = 'web', _("Web")
|
|
CUSTOM = 'custom', _("Custom type")
|
|
|
|
@classmethod
|
|
def filter_choices(cls, category):
|
|
_category = getattr(cls, category.upper(), None)
|
|
choices = [(_category.value, _category.label)] if _category else cls.choices
|
|
return choices
|