mirror of https://github.com/portainer/portainer
8 lines
164 B
JavaScript
8 lines
164 B
JavaScript
|
function EndpointSecurityFormData() {
|
||
|
this.TLS = false;
|
||
|
this.TLSMode = 'tls_client_ca';
|
||
|
this.TLSCACert = null;
|
||
|
this.TLSCert = null;
|
||
|
this.TLSKey = null;
|
||
|
}
|