mirror of https://github.com/jumpserver/jumpserver
perf: 更新 rdp7 protocol 设置
parent
411102ed85
commit
2f81196874
|
@ -74,8 +74,19 @@ class Protocol(ChoicesMixin, models.TextChoices):
|
|||
'port': 3390,
|
||||
'secret_types': ['password'],
|
||||
'setting': {
|
||||
'console': False,
|
||||
'security': 'any',
|
||||
'console': {
|
||||
'type': 'bool',
|
||||
'default': False,
|
||||
'label': _('Console'),
|
||||
'help_text': _("Connect to console session")
|
||||
},
|
||||
'security': {
|
||||
'type': 'choice',
|
||||
'choices': [('any', _('Any')), ('rdp', 'RDP'), ('tls', 'TLS'), ('nla', 'NLA')],
|
||||
'default': 'any',
|
||||
'label': _('Security'),
|
||||
'help_text': _("Security layer to use for the connection")
|
||||
},
|
||||
}
|
||||
},
|
||||
cls.vnc: {
|
||||
|
|
Loading…
Reference in New Issue