mirror of https://github.com/jumpserver/jumpserver
Merge pull request #11122 from jumpserver/pr@dev@fix_rdpfilemultimon
feat: rdp file 支持设置多屏显示 (multimon)pull/11128/head
commit
bf30be2084
|
@ -69,6 +69,11 @@ class RDPFileClientProtocolURLMixin:
|
|||
if multi_mon:
|
||||
rdp_options['use multimon:i'] = '1'
|
||||
|
||||
# 设置多屏显示
|
||||
multi_mon = is_true(self.request.query_params.get('multi_mon'))
|
||||
if multi_mon:
|
||||
rdp_options['use multimon:i'] = '1'
|
||||
|
||||
# 设置磁盘挂载
|
||||
drives_redirect = is_true(self.request.query_params.get('drives_redirect'))
|
||||
if drives_redirect:
|
||||
|
|
Loading…
Reference in New Issue