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.
39 lines
1.6 KiB
39 lines
1.6 KiB
from django.utils.translation import ugettext_lazy as _
|
|
from rest_framework import serializers
|
|
|
|
|
|
class TerminalSettingSerializer(serializers.Serializer):
|
|
SORT_BY_CHOICES = (
|
|
('hostname', _('Hostname')),
|
|
('ip', _('IP'))
|
|
)
|
|
|
|
PAGE_SIZE_CHOICES = (
|
|
('all', _('All')),
|
|
('auto', _('Auto')),
|
|
('10', '10'),
|
|
('15', '15'),
|
|
('25', '25'),
|
|
('50', '50'),
|
|
)
|
|
TERMINAL_PASSWORD_AUTH = serializers.BooleanField(required=False, label=_('Password auth'))
|
|
TERMINAL_PUBLIC_KEY_AUTH = serializers.BooleanField(
|
|
required=False, label=_('Public key auth'),
|
|
help_text=_('Tips: If use other auth method, like AD/LDAP, you should disable this to '
|
|
'avoid being able to log in after deleting')
|
|
)
|
|
TERMINAL_ASSET_LIST_SORT_BY = serializers.ChoiceField(
|
|
SORT_BY_CHOICES, required=False, label=_('List sort by')
|
|
)
|
|
TERMINAL_ASSET_LIST_PAGE_SIZE = serializers.ChoiceField(
|
|
PAGE_SIZE_CHOICES, required=False, label=_('List page size')
|
|
)
|
|
TERMINAL_TELNET_REGEX = serializers.CharField(
|
|
allow_blank=True, max_length=1024, required=False, label=_('Telnet login regex'),
|
|
help_text=_("Tips: The login success message varies with devices. "
|
|
"if you cannot log in to the device through Telnet, set this parameter")
|
|
)
|
|
TERMINAL_MAGNUS_ENABLED = serializers.BooleanField(label=_("Enable database proxy"))
|
|
XRDP_ENABLED = serializers.BooleanField(label=_("Enable XRDP"))
|
|
TERMINAL_KOKO_SSH_ENABLED = serializers.BooleanField(label=_("Enable KoKo SSH"))
|