feat: 支持配置资产连接默认打开方式 (#12781)

Co-authored-by: feng <1304903146@qq.com>
This commit is contained in:
fit2bot
2024-03-08 10:47:18 +08:00
committed by GitHub
parent 4108415894
commit a3658136e2
6 changed files with 108 additions and 77 deletions

View File

@@ -33,6 +33,11 @@ class RDPClientOption(TextChoices):
DRIVES_REDIRECT = 'drives_redirect', _('Drives redirect')
class ConnectDefaultOpenMethod(TextChoices):
CURRENT = 'current', _('Current window')
NEW = 'new', _('New window')
class RDPSmartSize(TextChoices):
DISABLE = '0', _('Disable')
ENABLE = '1', _('Enable')