mirror of https://github.com/jumpserver/jumpserver
feat: rdp file 支持设置多屏显示 (multimon)
parent
38cee8eaa4
commit
53c8c2d9ea
|
@ -65,6 +65,11 @@ class RDPFileClientProtocolURLMixin:
|
||||||
'smart sizing:i': '1',
|
'smart sizing: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'))
|
drives_redirect = is_true(self.request.query_params.get('drives_redirect'))
|
||||||
if drives_redirect:
|
if drives_redirect:
|
||||||
|
|
Loading…
Reference in New Issue