mirror of https://github.com/jumpserver/jumpserver
修复网关更新获取到了明文密码
parent
f7f9331c48
commit
ac5f2c560d
|
@ -61,7 +61,9 @@ class GatewaySerializer(AuthSerializerMixin, BulkOrgResourceModelSerializer):
|
||||||
fields_fk = ['domain']
|
fields_fk = ['domain']
|
||||||
fields = fields_small + fields_fk
|
fields = fields_small + fields_fk
|
||||||
extra_kwargs = {
|
extra_kwargs = {
|
||||||
'password': {'validators': [NoSpecialChars()]}
|
'password': {'write_only': True, 'validators': [NoSpecialChars()]},
|
||||||
|
'private_key': {"write_only": True},
|
||||||
|
'public_key': {"write_only": True},
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
|
Loading…
Reference in New Issue