Merge pull request #11373 from jumpserver/pr@v3.6@device_add_sftp

perf: 网络设备支持 sftp
This commit is contained in:
老广 2023-08-21 15:40:10 +08:00 committed by GitHub
commit ed5f4a227f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ class DeviceTypes(BaseType):
def _get_protocol_constrains(cls) -> dict:
return {
'*': {
'choices': ['ssh', 'telnet']
'choices': ['ssh', 'telnet', 'sftp']
}
}