mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
7 lines
164 B
JavaScript
7 lines
164 B
JavaScript
function EndpointSecurityFormData() {
|
|
this.TLS = false;
|
|
this.TLSMode = 'tls_client_ca';
|
|
this.TLSCACert = null;
|
|
this.TLSCert = null;
|
|
this.TLSKey = null;
|
|
}
|