mirror of
https://github.com/portainer/portainer.git
synced 2025-07-26 00:39:41 +02:00
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;
|
||
|
}
|