mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
5d3bc0fabd
- updated chakra and typescript - added locales for dns provider configs
37 lines
686 B
Go
37 lines
686 B
Go
package dnsproviders
|
|
|
|
func getDNSIspconfig() Provider {
|
|
return Provider{
|
|
Title: "dns_ispconfig",
|
|
Type: "object",
|
|
AdditionalProperties: false,
|
|
Required: []string{
|
|
"ISPC_User",
|
|
"ISPC_Password",
|
|
"ISPC_Api",
|
|
},
|
|
Properties: map[string]providerField{
|
|
"ISPC_User": {
|
|
Title: "user",
|
|
Type: "string",
|
|
MinLength: 1,
|
|
},
|
|
"ISPC_Password": {
|
|
Title: "password",
|
|
Type: "string",
|
|
MinLength: 1,
|
|
IsSecret: true,
|
|
},
|
|
"ISPC_Api": {
|
|
Title: "api-url",
|
|
Type: "string",
|
|
MinLength: 1,
|
|
},
|
|
"ISPC_Api_Insecure": {
|
|
Title: "insecure",
|
|
Type: "boolean",
|
|
},
|
|
},
|
|
}
|
|
}
|